On Tue, Jun 1, 2010 at 1:19 PM, vishal bayskar
wrote:
>>how do I search for the constructor
>>parent::child::A::A(parent::child::B const & arg0) [constructor]
>
>>What arg_types should I provide ?
>
>>I have tried with and without namespaces like
>>cons = mb.constructors('A', arg_types=['parent::c
>how do I search for the constructor
>parent::child::A::A(parent::child::B const & arg0) [constructor]
>What arg_types should I provide ?
>I have tried with and without namespaces like
>cons = mb.constructors('A', arg_types=['parent::child::B const &'])
>cons = mb.constructors('A', arg_types=[
a.h
===
#ifndef _INEX_A__
#define _INEX_A__
#include "b.h"
namespace parent{
namespace child{
class A{
public:
A(int const &);
A(int, int);
A(B const &);
int getA(int);
};
};
};
#endif
b.h
===
#ifndef _INEX_B__
#define _INEX_B__
namespace parent{
namespace chi