diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-03-05 17:14:45 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-03-05 17:14:45 +0000 |
commit | 58033491c6d0bac82315c1fdb1ec9b39be58093f (patch) | |
tree | c69c3aa67ec66758066e959bd0d533ea336ec236 /examples/Smart_Pointers/Gadget_Factory.h | |
parent | 2efc882384a34f61311a24fc641d1b5fd5776356 (diff) | |
download | ATCD-TAO-1_5.tar.gz |
This commit was manufactured by cvs2svn to create tag 'TAO-1_5'.TAO-1_5
Diffstat (limited to 'examples/Smart_Pointers/Gadget_Factory.h')
-rw-r--r-- | examples/Smart_Pointers/Gadget_Factory.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/examples/Smart_Pointers/Gadget_Factory.h b/examples/Smart_Pointers/Gadget_Factory.h deleted file mode 100644 index dd3c17e7975..00000000000 --- a/examples/Smart_Pointers/Gadget_Factory.h +++ /dev/null @@ -1,32 +0,0 @@ -/* -*- C++ -*- */ -//============================================================================= -/** - * @file Gadget_Factory.h - * - * $Id$ - * - * @author Christopher Kohlhoff <chris@kohlhoff.com> - */ -//============================================================================= - -#ifndef GADGET_FACTORY_H -#define GADGET_FACTORY_H - -#include "Gadget.h" - -/** - * @class Gadget_Factory - * - * @brief Used to create Gadget instances. - */ -class Gadget_Factory -{ -public: - /// Create an instance of a gadget. Ownership of the object is automatically - /// transferred to the caller since we return a Gadget_var. This also means - /// that the object will be deleted automatically if the caller "forgets" to - /// collect the return value. - static Gadget_var create_gadget (void); -}; - -#endif /* GADGET_FACTORY_H */ |