summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/StrategyFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/StrategyFactory.h')
-rw-r--r--TAO/tao/PortableServer/StrategyFactory.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/TAO/tao/PortableServer/StrategyFactory.h b/TAO/tao/PortableServer/StrategyFactory.h
new file mode 100644
index 00000000000..b441256d214
--- /dev/null
+++ b/TAO/tao/PortableServer/StrategyFactory.h
@@ -0,0 +1,45 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file StrategyFactory.h
+ *
+ * $Id$
+ *
+ * @author Johnny Willemsen <jwillemsen@remedy.nl>
+ */
+//=============================================================================
+
+#ifndef TAO_PORTABLESERVER_STRATEGYFACTORY_H
+#define TAO_PORTABLESERVER_STRATEGYFACTORY_H
+
+#include /**/ "ace/pre.h"
+
+#include "ace/Service_Object.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/orbconf.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace TAO
+{
+ namespace Portable_Server
+ {
+ class StrategyFactory
+ : public ACE_Service_Object
+ {
+ public:
+ virtual ~StrategyFactory (void);
+ };
+ } /* namespace Portable_Server */
+} /* namespace TAO */
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_PORTABLESERVER_STRATEGYFACTORY_H */