summaryrefslogtreecommitdiff
path: root/examples/Smart_Pointers/Gadget_Part_Factory.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
commit3df4acfa816441fc28a95dee6d0191a927145d95 (patch)
treeb5ae7ca44662cfd8e5c95f1826e4406021a606f5 /examples/Smart_Pointers/Gadget_Part_Factory.h
parent60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff)
downloadATCD-pre-subset.tar.gz
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'examples/Smart_Pointers/Gadget_Part_Factory.h')
-rw-r--r--examples/Smart_Pointers/Gadget_Part_Factory.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/examples/Smart_Pointers/Gadget_Part_Factory.h b/examples/Smart_Pointers/Gadget_Part_Factory.h
deleted file mode 100644
index a7bc5cb38bd..00000000000
--- a/examples/Smart_Pointers/Gadget_Part_Factory.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/* -*- C++ -*- */
-//=============================================================================
-/**
- * @file Gadget_Part_Factory.h
- *
- * $Id$
- *
- * @author Christopher Kohlhoff <chris@kohlhoff.com>
- */
-//=============================================================================
-
-#ifndef GADGET_PART_FACTORY_H
-#define GADGET_PART_FACTORY_H
-
-#include "Gadget_Part.h"
-#include "Gadget.h"
-
-/**
- * @class Gadget_Part_Factory
- *
- * @brief Used to create Gadget_Part instances.
- */
-class Gadget_Part_Factory
-{
-public:
- /// Create an instance of a gadget. Ownership of the object is automatically
- /// transferred to the caller since we return a Gadget_Part_var. This also
- /// means that the object will be deleted automatically if the caller
- /// "forgets" to collect the return value.
- static Gadget_Part_var create_gadget_part (Gadget_ptr owner,
- const char *name,
- int size);
-};
-
-#endif /* GADGET_PART_FACTORY_H */