summaryrefslogtreecommitdiff
path: root/trunk/TAO/tao/PortableServer/ImplicitActivationStrategy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tao/PortableServer/ImplicitActivationStrategy.cpp')
-rw-r--r--trunk/TAO/tao/PortableServer/ImplicitActivationStrategy.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/trunk/TAO/tao/PortableServer/ImplicitActivationStrategy.cpp b/trunk/TAO/tao/PortableServer/ImplicitActivationStrategy.cpp
new file mode 100644
index 00000000000..f2761572e36
--- /dev/null
+++ b/trunk/TAO/tao/PortableServer/ImplicitActivationStrategy.cpp
@@ -0,0 +1,31 @@
+// -*- C++ -*-
+
+#include "tao/PortableServer/ImplicitActivationStrategy.h"
+
+ACE_RCSID (PortableServer,
+ ImplicitActivationStrategy,
+ "$Id$")
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace TAO
+{
+ namespace Portable_Server
+ {
+ void
+ ImplicitActivationStrategy::strategy_init (
+ TAO_Root_POA * /*poa*/
+ ACE_ENV_ARG_DECL_NOT_USED)
+ {
+ // dependent on type create the correct strategy.
+ }
+
+ void
+ ImplicitActivationStrategy::strategy_cleanup(
+ ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ {
+ }
+ }
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL