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