interface1.h   [plain text]


#pragma interface
struct B
{
  B(){};
  ~B(){}
};
struct A {
  B a;

};