summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch/NodeDescFactory.h
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-04-04 01:39:53 +0000
committerMarc Laukien <marc@zeroc.com>2002-04-04 01:39:53 +0000
commitbabb384bfc970d0b6411d996e897ccaa8d2d7323 (patch)
tree2f8430e601e1d0fc4554896d83c302ddfe8b49ff /cpp/src/IcePatch/NodeDescFactory.h
parentmore IcePatch stuff (diff)
downloadice-babb384bfc970d0b6411d996e897ccaa8d2d7323.tar.bz2
ice-babb384bfc970d0b6411d996e897ccaa8d2d7323.tar.xz
ice-babb384bfc970d0b6411d996e897ccaa8d2d7323.zip
more IcePatch stuff
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