summaryrefslogtreecommitdiff
path: root/examples/Smart_Pointers/Gadget_Part_Factory.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-08-29 12:02:09 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-08-29 12:02:09 +0000
commit61f967d5f2921d9cbeb37c853d7778878bfb2a78 (patch)
treebebd0b88ed4b1eba58a33c61c58f52cbb78617c1 /examples/Smart_Pointers/Gadget_Part_Factory.h
parentf1cf40bea74bcea4f78317d4056988cf822a0b7d (diff)
downloadATCD-61f967d5f2921d9cbeb37c853d7778878bfb2a78.tar.gz
ChangeLogTag:Tue Aug 28 17:51:19 2001 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'examples/Smart_Pointers/Gadget_Part_Factory.h')
-rw-r--r--examples/Smart_Pointers/Gadget_Part_Factory.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/examples/Smart_Pointers/Gadget_Part_Factory.h b/examples/Smart_Pointers/Gadget_Part_Factory.h
new file mode 100644
index 00000000000..a7bc5cb38bd
--- /dev/null
+++ b/examples/Smart_Pointers/Gadget_Part_Factory.h
@@ -0,0 +1,35 @@
+/* -*- 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 */