Hi,
I am almost certain this is a problem with my configuration file. Can
someone here please guide me on this?
I have two files :
a.h is:
class A{
public:
virtual void func(){printf ("class A func\n\n");}};
b.h is :
#include "a.h"class B:public A{
public:
void func1(){}
void func(){printf ("class B func\n\n");A::func();func1();}};
in my configuration file:
CALL_GRAPH=yes
GENERATE_XML=yes
EXTRACT_ALL = YES
EXTRACT_PRIVATE = YES
RECURSIVE = YES
REFERENCED_BY_RELATION = YES
REFERENCES_RELATION = YES
In the list of references of B::func(), the call graph shows func1 but DOES
NOT show A::func().
I am assuming I have a missing argument in my configuration file. Can
someone please help? I have been stuck on this for quite some time now.
Thank you,
Anurag Murty
|