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
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
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;
> > };
> >
>
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
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
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