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