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.

_______________________________________________
Cplusplus-sig mailing list
Cplusplus-sig@python.org
http://mail.python.org/mailman/listinfo/cplusplus-sig

Reply via email to