[C++-sig] find out dependency from public part only

vishal bayskar vishal.bayskar at nechclst.in
Tue Jun 1 15:50:45 CEST 2010


Is there any function available in pyplusplus to findout the dependencies of
some declaration from public part only?
I searched but I didn't find any such functionality

For example in below file (afile.h) if I find out dependency for class A it
should not give class C as it is in the private part.

afile.h
====
class C{
        int getC();
};

class A{
public:
        A(int const &);
        int getA(int);
private:
        A(C const &);
        C getC();

};
-- 
View this message in context: http://old.nabble.com/find-out-dependency-from-public-part-only-tp28742003p28742003.html
Sent from the Python - c++-sig mailing list archive at Nabble.com.



More information about the Cplusplus-sig mailing list