summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/tests/ObjectLocatorTest/DummyImpl.h
blob: 4ec404d93ea35570136943e30a33a6dce103fd13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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_*/