summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch/NodeDescFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IcePatch/NodeDescFactory.h')
-rw-r--r--cpp/src/IcePatch/NodeDescFactory.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp/src/IcePatch/NodeDescFactory.h b/cpp/src/IcePatch/NodeDescFactory.h
new file mode 100644
index 00000000000..96313dd27bd
--- /dev/null
+++ b/cpp/src/IcePatch/NodeDescFactory.h
@@ -0,0 +1,30 @@
+// **********************************************************************
+//
+// Copyright (c) 2002
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+#ifndef ICE_PATCH_NODE_DESC_FACTORY_H
+#define ICE_PATCH_NODE_DESC_FACTORY_H
+
+#include <Ice/Ice.h>
+#include <IcePatch/Node.h>
+
+namespace IcePatch
+{
+
+class NodeDescFactory : public Ice::ObjectFactory
+{
+public:
+
+ Ice::ObjectPtr create(const std::string&);
+ void destroy();
+};
+
+}
+
+#endif