summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-11-16 17:47:53 +0000
committerjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-11-16 17:47:53 +0000
commitb304da95790da54a58ee22c8fec72c57523dc224 (patch)
treec4ce6b3aaccf199ae79daa37b70130a240e19db4
parent9c595519834b5abe03ef1c088c811201624b2ef9 (diff)
downloadATCD-b304da95790da54a58ee22c8fec72c57523dc224.tar.gz
*** empty log message ***
-rw-r--r--TAO/CIAO/DAnCE/ciao/Dynamic_Component_Servant_Base.cpp19
-rw-r--r--TAO/CIAO/DAnCE/ciao/Dynamic_Component_Servant_Base.h3
2 files changed, 19 insertions, 3 deletions
diff --git a/TAO/CIAO/DAnCE/ciao/Dynamic_Component_Servant_Base.cpp b/TAO/CIAO/DAnCE/ciao/Dynamic_Component_Servant_Base.cpp
new file mode 100644
index 00000000000..210b409a417
--- /dev/null
+++ b/TAO/CIAO/DAnCE/ciao/Dynamic_Component_Servant_Base.cpp
@@ -0,0 +1,19 @@
+#include "Dynamic_Component_Servant_Base.h"
+#include "CIAO_common.h"
+#include "ace/Log_Msg.h"
+#include "ace/OS_NS_string.h"
+
+ACE_RCSID (ciao,
+ Dynamic_Component_Servant_Base,
+ "$Id$")
+
+namespace CIAO
+{
+ Dynamic_Component_Servant_Base::Dynamic_Component_Servant_Base (void)
+ {
+ }
+
+ Dynamic_Component_Servant_Base::~Dynamic_Component_Servant_Base (void)
+ {
+ }
+}
diff --git a/TAO/CIAO/DAnCE/ciao/Dynamic_Component_Servant_Base.h b/TAO/CIAO/DAnCE/ciao/Dynamic_Component_Servant_Base.h
index 5b427c150d3..344ad03b67f 100644
--- a/TAO/CIAO/DAnCE/ciao/Dynamic_Component_Servant_Base.h
+++ b/TAO/CIAO/DAnCE/ciao/Dynamic_Component_Servant_Base.h
@@ -29,14 +29,11 @@ namespace CIAO
class CIAO_SERVER_Export Dynamic_Component_Servant_Base
{
public:
- // @@ Jai, where are the implementations of the following
- // operations?
explicit Dynamic_Component_Servant_Base (void);
virtual ~Dynamic_Component_Servant_Base (void);
virtual PortableServer::Servant create (void) = 0;
-
};
}