Thread: [Doxygen-users] Internal inconsistency: Which file?
Brought to you by:
dimitri
From: Andreas T. <an...@vi...> - 2015-03-03 15:36:43
|
Hello World, I have the following error in my doxygen log: error: Internal inconsistency: namespace in IDL not module, library or constant group Unfortunately it does not tell me, in which file this inconsistency occurs. How do I find out which file or namespace is meant? System: Windows 7 Professional doxygen 1.8.9.1 TIA and best regards Andreas -- ("`-''-/").___..--''"`-._ `o_ o ) `-. ( ).`-.__.`) (_Y_.)' ._ ) `._ `. ``-..-' _..`--'_..-_/ /--'_.' .' (il).-'' (li).' ((!.-' Andreas Tscharner an...@vi... ICQ-No. 14356454 |
From: Albert <alb...@gm...> - 2015-03-04 10:12:29
|
Andreas, The problem is the "\namespace Param" here a new namespace is defined and this is not known in IDL. Wouldn't it be better to use "\interface Param" (manual paragraph 4.1.1.3 Documentation at other places), It is just a guess as I don't "speak" IDL. I'll have a look if I can extend the error message. Albert On Wed, Mar 4, 2015 at 8:54 AM, Andreas Tscharner <an...@vi...> wrote: > On 03.03.2015 16:18, Andreas Tscharner wrote: > > [snip] > >> How do I find out which file or namespace is meant? >> > > I have found out which file it was (by removing one by one file from the > list of files for the documentation). > > The following small file is already able to trigger the error: > > ----- > /** \file ParamLib.idl > * \brief "Library shell" for Param > */ > > /** \namespace Param > * \brief Library for all kind of parameters > * > * The ParamLib library provides a type library containing all interfaces > * from the Param.idl file > */ > > > [ uuid(D856F6C2-DB20-4FB6-8987-390B509A5D1F), version(1.0), > helpstring("Metrosoft QUARTIS Param Library") ] > library Param > { > // Import other needed libraries > importlib("stdole2.tlb"); > importlib("COMTypes.tlb"); > importlib("COMMeTypes.tlb"); > > // Include elements > //#include "Param.idl" > }; > ----- > > > AFAIK I haven't changed this file for quite a while and haven't had this > error with earlier versions of doxygen. > > Attached: > * File causing the error > * doxygen configuration file > * warn file from doxygen > > Does anyone know what's wrong? > > > Best regards > Andreas > -- > ("`-''-/").___..--''"`-._ > `o_ o ) `-. ( ).`-.__.`) > (_Y_.)' ._ ) `._ `. ``-..-' > _..`--'_..-_/ /--'_.' .' > (il).-'' (li).' ((!.-' > > Andreas Tscharner an...@vi... ICQ-No. 14356454 > |
From: Andreas T. <an...@vi...> - 2015-03-04 10:18:04
|
On 04.03.2015 11:12, Albert wrote: > Andreas, > > The problem is the "\namespace Param" here a new namespace is defined > and this is not known in IDL. Wouldn't it be better to use "\interface Actually, it is: "library Param" a few lines later defines it... And as I have written before. It worked with older versions of doxygen (or at least, doxygen did not give me an error message) Interfaces are defined in the included file (with the \interface directive), but I commented it out here, because it was not necessary for the example. [snip] > I'll have a look if I can extend the error message. That would be nice. Especially the filename of the file containing the problem would be helpful... [snip] > > /** \namespace Param > * \brief Library for all kind of parameters > * > * The ParamLib library provides a type library containing all > interfaces > * from the Param.idl file > */ > > > [ uuid(D856F6C2-DB20-4FB6-8987-__390B509A5D1F), version(1.0), > helpstring("Metrosoft QUARTIS Param Library") ] > library Param > { Best regards Andreas -- ("`-''-/").___..--''"`-._ `o_ o ) `-. ( ).`-.__.`) (_Y_.)' ._ ) `._ `. ``-..-' _..`--'_..-_/ /--'_.' .' (il).-'' (li).' ((!.-' Andreas Tscharner an...@vi... ICQ-No. 14356454 |
From: Albert <alb...@gm...> - 2015-03-04 10:26:13
|
Andreas, When doing some debugging the offending line is the \namespace line. The definition of "library Param" is OK. Looks that a separate section is created for the namespace but this is not known in IDL. The \namespace command is a command to document a namespace out of place (not directly in front of the namespace.Would the removing of the \namespace be a solution for you? or would the \interface be a solution or should there be a separate command to document the "library" ? Albert On Wed, Mar 4, 2015 at 11:17 AM, Andreas Tscharner <an...@vi...> wrote: > On 04.03.2015 11:12, Albert wrote: > >> Andreas, >> >> The problem is the "\namespace Param" here a new namespace is defined >> and this is not known in IDL. Wouldn't it be better to use "\interface >> > > Actually, it is: "library Param" a few lines later defines it... > And as I have written before. It worked with older versions of doxygen (or > at least, doxygen did not give me an error message) > Interfaces are defined in the included file (with the \interface > directive), but I commented it out here, because it was not necessary for > the example. > > [snip] > >> I'll have a look if I can extend the error message. >> > > That would be nice. Especially the filename of the file containing the > problem would be helpful... > > [snip] > >> >> /** \namespace Param >> * \brief Library for all kind of parameters >> * >> * The ParamLib library provides a type library containing all >> interfaces >> * from the Param.idl file >> */ >> >> >> [ uuid(D856F6C2-DB20-4FB6-8987-__390B509A5D1F), version(1.0), >> helpstring("Metrosoft QUARTIS Param Library") ] >> library Param >> { >> > > Best regards > Andreas > -- > ("`-''-/").___..--''"`-._ > `o_ o ) `-. ( ).`-.__.`) > (_Y_.)' ._ ) `._ `. ``-..-' > _..`--'_..-_/ /--'_.' .' > (il).-'' (li).' ((!.-' > > Andreas Tscharner an...@vi... ICQ-No. 14356454 > |
From: Stefan K. <ste...@ib...> - 2015-03-04 12:04:02
|
Dear all, I have a custom layout xml file defining a user tab: > <tab type="user" title="Custom" url="@ref custom_page"> </tab> The tab is shown correctly, but when clicked, it is not highlighted like the default tabs when clicked. Looking at the correspondend html file, the "current" style class is missing in the "li" component. Is there any solution which is not running a post processing script to repair the affected html files? The same issue was posted 2 years ago without any answer, so I try again. The doxygen version I am using is 1.8.6. Thanks for help! Stefan |
From: Albert <alb...@gm...> - 2015-03-04 18:28:25
|
Stefan, Would probably be useful to have a small example with source file, layout file and Doxyfile and probably as well an image / description where it does not work and does work in the example. Albert On Wed, Mar 4, 2015 at 12:41 PM, Stefan Kaufmann < ste...@ib...> wrote: > Dear all, > > I have a custom layout xml file defining a user tab: > > <tab type="user" title="Custom" url="@ref custom_page"> </tab> > The tab is shown correctly, but when clicked, it is not highlighted like > the default tabs when clicked. Looking at the correspondend html file, > the "current" style class is missing in the "li" component. > > Is there any solution which is not running a post processing script to > repair the affected html files? > > The same issue was posted 2 years ago without any answer, so I try again. > > The doxygen version I am using is 1.8.6. > > Thanks for help! > Stefan > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, > sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for > all > things parallel software development, from weekly thought leadership blogs > to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > Doxygen-users mailing list > Dox...@li... > https://lists.sourceforge.net/lists/listinfo/doxygen-users > |
From: Alan R. <al...@un...> - 2015-03-06 20:13:47
|
For what it's worth I see the same behavior. To be a little more specific: As I mouse over the custom (Download) tab, it gets changes color from a light blue to a little darker blue. When I click on the tab, the Main Page tab turns dark blue, and the Download tab returns to its original light blue. If I click on any of the other tabs, they turn dark blue and stay dark blue. In addition, this section shows up twice in the index on the left hand side. [It only occurs once in the source]. I did some experiments. When I switched the URL @ref from a @section to an @page, then the behavior changed slightly. Now instead of making "Main Page" dark blue, it now makes "Related Pages" dark blue. Here's the line from my DoxygenLayout.xml. This is the only line I changed from the output of doxygen -l. <tab type="user" visible="yes" title="Download" url="@ref download"/> Here's the complete contents of the Download.c file that contains the "download" definition: /** @page download Download If you came here to download the software, then click on the <a href="http://assimilationsystems.com/download/">download</a> link to get connected to the Assimilation community, receive links to prebuilt packages along with installation and usage tips. */ Let me know what else you want. On 03/04/2015 11:28 AM, Albert wrote: > Stefan, > > Would probably be useful to have a small example with source file, > layout file and Doxyfile and probably as well an image / description > where it does not work and does work in the example. > > Albert > > On Wed, Mar 4, 2015 at 12:41 PM, Stefan Kaufmann > <ste...@ib... <mailto:ste...@ib...>> wrote: > > Dear all, > > I have a custom layout xml file defining a user tab: > > <tab type="user" title="Custom" url="@ref custom_page"> </tab> > The tab is shown correctly, but when clicked, it is not > highlighted like > the default tabs when clicked. Looking at the correspondend html file, > the "current" style class is missing in the "li" component. > > Is there any solution which is not running a post processing script to > repair the affected html files? > > The same issue was posted 2 years ago without any answer, so I try > again. > > The doxygen version I am using is 1.8.6. > > Thanks for help! > Stefan > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel > Website, sponsored > by Intel and developed in partnership with Slashdot Media, is your > hub for all > things parallel software development, from weekly thought > leadership blogs to > news, videos, case studies, tutorials and more. Take a look and > join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > Doxygen-users mailing list > Dox...@li... > <mailto:Dox...@li...> > https://lists.sourceforge.net/lists/listinfo/doxygen-users > > > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for all > things parallel software development, from weekly thought leadership blogs to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > > > _______________________________________________ > Doxygen-users mailing list > Dox...@li... > https://lists.sourceforge.net/lists/listinfo/doxygen-users |
From: Albert <alb...@gm...> - 2015-03-08 19:27:39
|
Hi Stefan, Thanks for the example. Had to study it a bit, but got the the problem, looks like that in the relevant pages the class="current" with the li-item is not set (as you showed in the page you added). I do see the highlighting when I use type="pages" instead of type="user", I only don't know if there are side effects, I have to study it a bit further (maybe you can see this on your larger code base). Albert On Sat, Mar 7, 2015 at 4:48 PM, Stefan Kaufmann <ste...@ib... > wrote: > Dear Albert, > > thanks for your reply, attached are the necessary files. There are 2 > custom user tabs created. After running doxygen, replace the created > p_working.html with the attached one. Now you should be able to see, that > this tab is highlighted when clicked and the other one not. > > Thanks for help! > Stefan > > > > Am 04.03.2015 um 19:28 schrieb Albert: > > Stefan, > > Would probably be useful to have a small example with source file, layout > file and Doxyfile and probably as well an image / description where it does > not work and does work in the example. > > Albert > > On Wed, Mar 4, 2015 at 12:41 PM, Stefan Kaufmann < > ste...@ib...> wrote: > >> Dear all, >> >> I have a custom layout xml file defining a user tab: >> > <tab type="user" title="Custom" url="@ref custom_page"> </tab> >> The tab is shown correctly, but when clicked, it is not highlighted like >> the default tabs when clicked. Looking at the correspondend html file, >> the "current" style class is missing in the "li" component. >> >> Is there any solution which is not running a post processing script to >> repair the affected html files? >> >> The same issue was posted 2 years ago without any answer, so I try again. >> >> The doxygen version I am using is 1.8.6. >> >> Thanks for help! >> Stefan >> >> >> ------------------------------------------------------------------------------ >> Dive into the World of Parallel Programming The Go Parallel Website, >> sponsored >> by Intel and developed in partnership with Slashdot Media, is your hub >> for all >> things parallel software development, from weekly thought leadership >> blogs to >> news, videos, case studies, tutorials and more. Take a look and join the >> conversation now. http://goparallel.sourceforge.net/ >> _______________________________________________ >> Doxygen-users mailing list >> Dox...@li... >> https://lists.sourceforge.net/lists/listinfo/doxygen-users >> > > > -- > Stefan Kaufmann > System Development > > Ibeo Automotive Systems GmbH > Merkurring 60-62 > 22143 Hamburg > Deutschland / Germany > Tel.: +49-40-298 676-516 > Fax: +49-40-298 676-10 > E-Mail: Ste...@ib... > Web: http://www.ibeo-as.com > > Ibeo Automotive Systems GmbH > Sitz der Gesellschaft: 22143 Hamburg > Handelsregister: HRB 111950 > Geschäftsführer: Dr. Ulrich S. Lages > Gesellschafter: Dr. Ulrich S. Lages, Mario Brumm, Michael Kiehn, Michael Köhler > > Diese E-Mail und etwaige Anhänge sind nur für den/die vorgenannten Empfänger bestimmt. Die E-Mail oder die etwaigen Anhänge enthalten ggf. vertrauliche Informationen. Wenn Sie nicht der richtige Empfänger sind, unterlassen Sie bitte das Lesen, Kopieren, die Benutzung oder die Weitergabe dieser Informationen an Dritte. Bitte verständigen Sie den Absender durch Rückantwort oder telefonisch über den irrtümlichen Erhalt dieser E-Mail. Löschen Sie bitte anschließend die E-Mail mit ihren Anhängen und alle ggf. existierenden Kopien. Die Informationen können dem anwaltlichen Berufsgeheimnis unterliegen oder anderweitig geschützt sein. Vielen Dank. > > This E-Mail message and any attachment(s) are intended only for the individual(s) or entity/ies named above and others who have been specifically authorized to receive it. The information contained therein may be confidential or privileged, and its disclosure or reproduction is strictly prohibited. If you are not the intended recipient, do not read, copy, use or disclose the content to any other individual or entity. Please notify the sender that you have received this E-Mail in error by replying to the E-Mail or by giving the sender a telephone call. Afterwards please delete the E-Mail with its attachment(s) and any copies of it. The information may be subject to legal professional or other privilege or may otherwise be protected by work product immunity or other legal rules. Thank you. > > |
From: Albert <alb...@gm...> - 2015-03-08 19:47:14
|
Stefan, Just found some side effects (it links to the file pages.html) Albert On Sun, Mar 8, 2015 at 8:27 PM, Albert <alb...@gm...> wrote: > Hi Stefan, > > Thanks for the example. Had to study it a bit, but got the the problem, > looks like that in the relevant pages the class="current" with the li-item > is not set (as you showed in the page you added). > I do see the highlighting when I use type="pages" instead of type="user", > I only don't know if there are side effects, I have to study it a bit > further (maybe you can see this on your larger code base). > > Albert > > On Sat, Mar 7, 2015 at 4:48 PM, Stefan Kaufmann < > ste...@ib...> wrote: > >> Dear Albert, >> >> thanks for your reply, attached are the necessary files. There are 2 >> custom user tabs created. After running doxygen, replace the created >> p_working.html with the attached one. Now you should be able to see, that >> this tab is highlighted when clicked and the other one not. >> >> Thanks for help! >> Stefan >> >> >> >> Am 04.03.2015 um 19:28 schrieb Albert: >> >> Stefan, >> >> Would probably be useful to have a small example with source file, >> layout file and Doxyfile and probably as well an image / description where >> it does not work and does work in the example. >> >> Albert >> >> On Wed, Mar 4, 2015 at 12:41 PM, Stefan Kaufmann < >> ste...@ib...> wrote: >> >>> Dear all, >>> >>> I have a custom layout xml file defining a user tab: >>> > <tab type="user" title="Custom" url="@ref custom_page"> </tab> >>> The tab is shown correctly, but when clicked, it is not highlighted like >>> the default tabs when clicked. Looking at the correspondend html file, >>> the "current" style class is missing in the "li" component. >>> >>> Is there any solution which is not running a post processing script to >>> repair the affected html files? >>> >>> The same issue was posted 2 years ago without any answer, so I try again. >>> >>> The doxygen version I am using is 1.8.6. >>> >>> Thanks for help! >>> Stefan >>> >>> >>> ------------------------------------------------------------------------------ >>> Dive into the World of Parallel Programming The Go Parallel Website, >>> sponsored >>> by Intel and developed in partnership with Slashdot Media, is your hub >>> for all >>> things parallel software development, from weekly thought leadership >>> blogs to >>> news, videos, case studies, tutorials and more. Take a look and join the >>> conversation now. http://goparallel.sourceforge.net/ >>> _______________________________________________ >>> Doxygen-users mailing list >>> Dox...@li... >>> https://lists.sourceforge.net/lists/listinfo/doxygen-users >>> >> >> >> -- >> Stefan Kaufmann >> System Development >> >> Ibeo Automotive Systems GmbH >> Merkurring 60-62 >> 22143 Hamburg >> Deutschland / Germany >> Tel.: +49-40-298 676-516 >> Fax: +49-40-298 676-10 >> E-Mail: Ste...@ib... >> Web: http://www.ibeo-as.com >> >> Ibeo Automotive Systems GmbH >> Sitz der Gesellschaft: 22143 Hamburg >> Handelsregister: HRB 111950 >> Geschäftsführer: Dr. Ulrich S. Lages >> Gesellschafter: Dr. Ulrich S. Lages, Mario Brumm, Michael Kiehn, Michael Köhler >> >> Diese E-Mail und etwaige Anhänge sind nur für den/die vorgenannten Empfänger bestimmt. Die E-Mail oder die etwaigen Anhänge enthalten ggf. vertrauliche Informationen. Wenn Sie nicht der richtige Empfänger sind, unterlassen Sie bitte das Lesen, Kopieren, die Benutzung oder die Weitergabe dieser Informationen an Dritte. Bitte verständigen Sie den Absender durch Rückantwort oder telefonisch über den irrtümlichen Erhalt dieser E-Mail. Löschen Sie bitte anschließend die E-Mail mit ihren Anhängen und alle ggf. existierenden Kopien. Die Informationen können dem anwaltlichen Berufsgeheimnis unterliegen oder anderweitig geschützt sein. Vielen Dank. >> >> This E-Mail message and any attachment(s) are intended only for the individual(s) or entity/ies named above and others who have been specifically authorized to receive it. The information contained therein may be confidential or privileged, and its disclosure or reproduction is strictly prohibited. If you are not the intended recipient, do not read, copy, use or disclose the content to any other individual or entity. Please notify the sender that you have received this E-Mail in error by replying to the E-Mail or by giving the sender a telephone call. Afterwards please delete the E-Mail with its attachment(s) and any copies of it. The information may be subject to legal professional or other privilege or may otherwise be protected by work product immunity or other legal rules. Thank you. >> >> > |
From: Stefan K. <ste...@ib...> - 2015-03-09 11:33:26
|
Dear Albert, thanks for checking. Yes this is the side effect. For me, it seems, that this side effect is unavoidable currently. I guess a new command would be required to allow custom tab highlighting like: \page <name> [title] \tab <name of associated tab> For me, the "related pages" tab does not make any sense, since if I create a custom page, I want the user to get there from a link or tab, I create manually. I guess no one will look for help in the docu browsing throught the related pages site. Best regards, Stefan Am 08.03.2015 um 20:47 schrieb Albert: > Stefan, > > Just found some side effects (it links to the file pages.html) > > Albert > > On Sun, Mar 8, 2015 at 8:27 PM, Albert <alb...@gm... > <mailto:alb...@gm...>> wrote: > > Hi Stefan, > > Thanks for the example. Had to study it a bit, but got the the > problem, looks like that in the relevant pages the class="current" > with the li-item is not set (as you showed in the page you added). > I do see the highlighting when I use type="pages" instead of > type="user", I only don't know if there are side effects, I have > to study it a bit further (maybe you can see this on your larger > code base). > > Albert > > On Sat, Mar 7, 2015 at 4:48 PM, Stefan Kaufmann > <ste...@ib... <mailto:ste...@ib...>> > wrote: > > Dear Albert, > > thanks for your reply, attached are the necessary files. There > are 2 custom user tabs created. After running doxygen, replace > the created p_working.html with the attached one. Now you > should be able to see, that this tab is highlighted when > clicked and the other one not. > > Thanks for help! > Stefan > > > > Am 04.03.2015 um 19:28 schrieb Albert: >> Stefan, >> >> Would probably be useful to have a small example with source >> file, layout file and Doxyfile and probably as well an image >> / description where it does not work and does work in the >> example. >> >> Albert >> >> On Wed, Mar 4, 2015 at 12:41 PM, Stefan Kaufmann >> <ste...@ib... >> <mailto:ste...@ib...>> wrote: >> >> Dear all, >> >> I have a custom layout xml file defining a user tab: >> > <tab type="user" title="Custom" url="@ref >> custom_page"> </tab> >> The tab is shown correctly, but when clicked, it is not >> highlighted like >> the default tabs when clicked. Looking at the >> correspondend html file, >> the "current" style class is missing in the "li" component. >> >> Is there any solution which is not running a post >> processing script to >> repair the affected html files? >> >> The same issue was posted 2 years ago without any answer, >> so I try again. >> >> The doxygen version I am using is 1.8.6. >> >> Thanks for help! >> Stefan >> >> ------------------------------------------------------------------------------ >> Dive into the World of Parallel Programming The Go >> Parallel Website, sponsored >> by Intel and developed in partnership with Slashdot >> Media, is your hub for all >> things parallel software development, from weekly thought >> leadership blogs to >> news, videos, case studies, tutorials and more. Take a >> look and join the >> conversation now. http://goparallel.sourceforge.net/ >> _______________________________________________ >> Doxygen-users mailing list >> Dox...@li... >> <mailto:Dox...@li...> >> https://lists.sourceforge.net/lists/listinfo/doxygen-users >> >> > > -- > Stefan Kaufmann > System Development > > Ibeo Automotive Systems GmbH > Merkurring 60-62 > 22143 Hamburg > Deutschland / Germany > Tel.:+49-40-298 676-516 <tel:%2B49-40-298%20676-516> > Fax:+49-40-298 676-10 <tel:%2B49-40-298%20676-10> > E-Mail:Ste...@ib... <mailto:Ste...@ib...> > Web:http://www.ibeo-as.com > > Ibeo Automotive Systems GmbH > Sitz der Gesellschaft: 22143 Hamburg > Handelsregister: HRB 111950 > Geschäftsführer: Dr. Ulrich S. Lages > Gesellschafter: Dr. Ulrich S. Lages, Mario Brumm, Michael Kiehn, Michael Köhler > > Diese E-Mail und etwaige Anhänge sind nur für den/die vorgenannten Empfänger bestimmt. Die E-Mail oder die etwaigen Anhänge enthalten ggf. vertrauliche Informationen. Wenn Sie nicht der richtige Empfänger sind, unterlassen Sie bitte das Lesen, Kopieren, die Benutzung oder die Weitergabe dieser Informationen an Dritte. Bitte verständigen Sie den Absender durch Rückantwort oder telefonisch über den irrtümlichen Erhalt dieser E-Mail. Löschen Sie bitte anschließend die E-Mail mit ihren Anhängen und alle ggf. existierenden Kopien. Die Informationen können dem anwaltlichen Berufsgeheimnis unterliegen oder anderweitig geschützt sein. Vielen Dank. > > This E-Mail message and any attachment(s) are intended only for the individual(s) or entity/ies named above and others who have been specifically authorized to receive it. The information contained therein may be confidential or privileged, and its disclosure or reproduction is strictly prohibited. If you are not the intended recipient, do not read, copy, use or disclose the content to any other individual or entity. Please notify the sender that you have received this E-Mail in error by replying to the E-Mail or by giving the sender a telephone call. Afterwards please delete the E-Mail with its attachment(s) and any copies of it. The information may be subject to legal professional or other privilege or may otherwise be protected by work product immunity or other legal rules. Thank you. > > > -- Stefan Kaufmann System Development Ibeo Automotive Systems GmbH Merkurring 60-62 22143 Hamburg Deutschland / Germany Tel.: +49-40-298 676-516 Fax: +49-40-298 676-10 E-Mail: Ste...@ib... Web: http://www.ibeo-as.com Ibeo Automotive Systems GmbH Sitz der Gesellschaft: 22143 Hamburg Handelsregister: HRB 111950 Geschäftsführer: Dr. Ulrich S. Lages Gesellschafter: Dr. Ulrich S. Lages, Mario Brumm, Michael Kiehn, Michael Köhler Diese E-Mail und etwaige Anhänge sind nur für den/die vorgenannten Empfänger bestimmt. Die E-Mail oder die etwaigen Anhänge enthalten ggf. vertrauliche Informationen. Wenn Sie nicht der richtige Empfänger sind, unterlassen Sie bitte das Lesen, Kopieren, die Benutzung oder die Weitergabe dieser Informationen an Dritte. Bitte verständigen Sie den Absender durch Rückantwort oder telefonisch über den irrtümlichen Erhalt dieser E-Mail. Löschen Sie bitte anschließend die E-Mail mit ihren Anhängen und alle ggf. existierenden Kopien. Die Informationen können dem anwaltlichen Berufsgeheimnis unterliegen oder anderweitig geschützt sein. Vielen Dank. This E-Mail message and any attachment(s) are intended only for the individual(s) or entity/ies named above and others who have been specifically authorized to receive it. The information contained therein may be confidential or privileged, and its disclosure or reproduction is strictly prohibited. If you are not the intended recipient, do not read, copy, use or disclose the content to any other individual or entity. Please notify the sender that you have received this E-Mail in error by replying to the E-Mail or by giving the sender a telephone call. Afterwards please delete the E-Mail with its attachment(s) and any copies of it. The information may be subject to legal professional or other privilege or may otherwise be protected by work product immunity or other legal rules. Thank you. |
From: Andreas T. <an...@vi...> - 2015-03-04 10:33:38
|
On 04.03.2015 11:26, Albert wrote: > Andreas, > Hello Albert, > When doing some debugging the offending line is the \namespace line. The > definition of "library Param" is OK. Looks that a separate section is > created for the namespace but this is not known in IDL. > The \namespace command is a command to document a namespace out of > place (not directly in front of the namespace.Would the removing of the > \namespace be a solution for you? or would the \interface be a solution > or should there be a separate command to document the "library" ? The solution is to remove the \namespace command (but keeping the \brief and the other documentation). In this case doxygen creates the namespace "Param" correctly and without an error. Thank you for your help and best regards Andreas -- ("`-''-/").___..--''"`-._ `o_ o ) `-. ( ).`-.__.`) (_Y_.)' ._ ) `._ `. ``-..-' _..`--'_..-_/ /--'_.' .' (il).-'' (li).' ((!.-' Andreas Tscharner an...@vi... ICQ-No. 14356454 |
From: Albert <alb...@gm...> - 2015-03-04 17:07:33
|
Dear all, I've just pushed a proposed solution to github (pull request 303), where the file and line are mentioned Albert On Wed, Mar 4, 2015 at 11:33 AM, Andreas Tscharner <an...@vi...> wrote: > On 04.03.2015 11:26, Albert wrote: > >> Andreas, >> >> > Hello Albert, > > When doing some debugging the offending line is the \namespace line. The >> definition of "library Param" is OK. Looks that a separate section is >> created for the namespace but this is not known in IDL. >> The \namespace command is a command to document a namespace out of >> place (not directly in front of the namespace.Would the removing of the >> \namespace be a solution for you? or would the \interface be a solution >> or should there be a separate command to document the "library" ? >> > > The solution is to remove the \namespace command (but keeping the \brief > and the other documentation). In this case doxygen creates the namespace > "Param" correctly and without an error. > > Thank you for your help and best regards > > Andreas > -- > ("`-''-/").___..--''"`-._ > `o_ o ) `-. ( ).`-.__.`) > (_Y_.)' ._ ) `._ `. ``-..-' > _..`--'_..-_/ /--'_.' .' > (il).-'' (li).' ((!.-' > > Andreas Tscharner an...@vi... ICQ-No. 14356454 > |