[Doxygen-users] USE_MDFILE_AS_MAINPAGE

2013-08-22 Thread Alessandro Antonello
This configuration doesn't work. I tried with different settings: USE_MDFILE_AS_MAINPAGE = docs/mainpage.md USE_MDFILE_AS_MAINPAGE = mainpage.md USE_MDFILE_AS_MAINPAGE = README.md USE_MDFILE_AS_MAINPAGE = README None of then worked. My index.html page is still empty. Could someone tell me what I

Re: [Doxygen-users] trailing underscore in directory names

2013-08-22 Thread Albert
Dear Fabio, Thank you for your explanation. I can reproduce the problem now. When I start from a directory in the source tree this directory is not mentioned in the lists, the files in this directory are seen as local files and not as files with a directory prepended. When I'm in _src I see the di

Re: [Doxygen-users] class inheritance issue (with example)

2013-08-22 Thread Jannick
Dimitri van Heesch gmail.com> writes: > > > On Aug 22, 2013, at 13:37 , Jannick gmail.com> wrote: > > > Hi, > > > > given the .cpp used as single doxygen input > > > > struct D { > > int d; > > }; > > > > class A { > > int a; > > }; > > > > class B : public A { > > int b; > > }; > > >

Re: [Doxygen-users] class inheritance issue (with example)

2013-08-22 Thread Dimitri van Heesch
On Aug 22, 2013, at 13:37 , Jannick wrote: > Hi, > > given the .cpp used as single doxygen input > > struct D { > int d; > }; > > class A { > int a; > }; > > class B : public A { > int b; > }; > > class C : public B { > int c; >D d; > }; > > the class dependency diagram does not sh

[Doxygen-users] class inheritance issue (with example)

2013-08-22 Thread Jannick
Hi, given the .cpp used as single doxygen input struct D { int d; }; class A { int a; }; class B : public A { int b; }; class C : public B { int c; D d; }; the class dependency diagram does not show the dotted arrow C -> D (cf. example http://www.ibm.com/developerworks/aix/library

Re: [Doxygen-users] trailing underscore in directory names

2013-08-22 Thread Fabio Mosti
dear Albert, thank you for your answer! I guess the problem was that I were launching the doxygen command from inside the directory tree; calling it from outside (and putting the configuration file outside too, changing properly the paths in it) seems to solve the problem. I don't know if i