summaryrefslogtreecommitdiff
path: root/ACE/examples/Smart_Pointers/Gadget_Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Smart_Pointers/Gadget_Factory.h')
-rw-r--r--ACE/examples/Smart_Pointers/Gadget_Factory.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/ACE/examples/Smart_Pointers/Gadget_Factory.h b/ACE/examples/Smart_Pointers/Gadget_Factory.h
new file mode 100644
index 00000000000..dd3c17e7975
--- /dev/null
+++ b/ACE/examples/Smart_Pointers/Gadget_Factory.h
@@ -0,0 +1,32 @@
+/* -*- 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 */