[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
#include <iostream> namespace { class A_Interface { public: virtual ~A_Interface() throw (); virtual void exec() const = 0; }; class A : public A_Interface { public: A(); virtual ~A() throw(); virtual void exec() const; }; class FunctionFactory { public: virtual ~FunctionFactory() throw (); virtual A_Interface* create_A() const = 0; }; class A_Factory : public FunctionFactory { public: A_Factory(); virtual ~A_Factory() throw(); virtual A_Interface* create_A() const; }; A_Interface::~A_Interface() throw () {} void A_Interface::exec() const {} A::A() {} A::~A() throw () {} void A::exec() const { std::cout << "called A" << std::endl; } FunctionFactory::~FunctionFactory() throw () {} A_Interface* FunctionFactory::create_A() const { return NULL; } A_Factory::A_Factory() {} A_Factory::~A_Factory() throw () {} A_Interface* A_Factory::create_A() const { return new A(); } }; // anonymous namespace void f( const FunctionFactory& obj ) { A_Interface* a = obj.create_A(); a->exec(); delete a; } int main(int argc, char* argv[]) { f( A_Factory() ); return 0; }