summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/tests/RedirectionServiceTest/DummyImpl.h
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-08-16 20:41:22 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-08-16 20:41:22 +0000
commit3b37923a14c7db4d9d602cd9166be38f6104da50 (patch)
tree63477c4878be44047f054092ab3a9b8bb77ba59f /modules/CIAO/DAnCE/tests/RedirectionServiceTest/DummyImpl.h
parent767b53703f187eddaf51b3a1d99c6984bf8ba75f (diff)
downloadATCD-3b37923a14c7db4d9d602cd9166be38f6104da50.tar.gz
branching/tagging
Diffstat (limited to 'modules/CIAO/DAnCE/tests/RedirectionServiceTest/DummyImpl.h')
-rw-r--r--modules/CIAO/DAnCE/tests/RedirectionServiceTest/DummyImpl.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/CIAO/DAnCE/tests/RedirectionServiceTest/DummyImpl.h b/modules/CIAO/DAnCE/tests/RedirectionServiceTest/DummyImpl.h
new file mode 100644
index 00000000000..272611eedba
--- /dev/null
+++ b/modules/CIAO/DAnCE/tests/RedirectionServiceTest/DummyImpl.h
@@ -0,0 +1,24 @@
+// $Id$
+#ifndef DUMMYIMPL_H_
+#define DUMMYIMPL_H_
+
+#include "DummyS.h"
+
+namespace Test
+ {
+ class DummyImpl
+ : public virtual POA_Test::Dummy
+ {
+ public:
+ DummyImpl() : helloSentence ("A dummy hello sentence.") {};
+
+ virtual char * sayHello (
+ );
+
+ private:
+ const char * helloSentence;
+ };
+
+ } // namespace POA_ObjectLocatorTest
+
+#endif /*DUMMYIMPL_H_*/