summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/tests/NameServiceTest/DummyImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/DAnCE/tests/NameServiceTest/DummyImpl.h')
-rw-r--r--modules/CIAO/DAnCE/tests/NameServiceTest/DummyImpl.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/CIAO/DAnCE/tests/NameServiceTest/DummyImpl.h b/modules/CIAO/DAnCE/tests/NameServiceTest/DummyImpl.h
new file mode 100644
index 00000000000..7b54d8b1386
--- /dev/null
+++ b/modules/CIAO/DAnCE/tests/NameServiceTest/DummyImpl.h
@@ -0,0 +1,25 @@
+// $Id$
+#ifndef DUMMYIMPL_H_
+#define DUMMYIMPL_H_
+
+#include "DummyS.h"
+
+namespace NameServiceTest
+ {
+
+ class DummyImpl
+ : public virtual POA_NameServiceTest::Dummy
+ {
+ public:
+ DummyImpl() : helloSentence ("A dummy hello sentence.") {};
+
+ virtual char * sayHello (
+ );
+
+ private:
+ const char * helloSentence;
+ };
+
+ } // namespace POA_ObjectLocatorTest
+
+#endif /*DUMMYIMPL_H_*/