fork(1) download
  1. #include <memory>
  2. class Foo2b
  3. {
  4. Foo2b();
  5. ~Foo2b();
  6. std::auto_ptr<struct Impl> m_pimpl;
  7. };
  8.  
  9. struct Impl
  10. {
  11. Impl(){}
  12. ~Impl(){}
  13. };
  14.  
  15. Foo2b::Foo2b(){}
  16. Foo2b::~Foo2b(){}
  17.  
  18. int main() {}
  19.  
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty