summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/impl/ndds/TopicDescription.h
blob: 10f90b24dfbdaae03b8cbe212467a2f0cde47c27 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/**
 * @author William R. Otte <wotte@dre.vanderbilt.edu>
 * @author Johnny Willemsen <jwillemsen@remedy.nl>
 *
 * $Id$
 *
 * Wrapper facade for NDDS.
 */

#ifndef CIAO_RTI_TOPICDESCRIPTION_H
#define CIAO_RTI_TOPICDESCRIPTION_H

#include "tao/LocalObject.h"

#include "dds4ccm/idl/dds_rtf2_dcpsEC.h"

#include "dds4ccm/idl/dds_rtf2_dcpsC.h"
#include "dds4ccm/impl/ndds/dds4ccm_ndds_impl_export.h"

#if defined (CIAO_DDS4CCM_NDDS) && (CIAO_DDS4CCM_NDDS==1)
#include "ndds/ndds_cpp.h"
#endif

#include "tao/LocalObject.h"

#if defined (CIAO_DDS4CCM_OPENDDS) && (CIAO_DDS4CCM_OPENDDS==1)
typedef ::DDS::TopicDescription DDSTopicDescription;
#endif

namespace CIAO
{
  namespace DDS4CCM
  {
    namespace RTI
    {
      class DDS4CCM_NDDS_IMPL_Export RTI_TopicDescription_i :
        public virtual ::DDS::CCM_TopicDescription,
        public virtual ::CORBA::LocalObject
      {
      public:
        // Constructor
        RTI_TopicDescription_i (void);

        // Destructor
        virtual ~RTI_TopicDescription_i (void);

        virtual char *
        get_type_name (void);

        virtual char *
          get_name (void);

        virtual ::DDS::DomainParticipant_ptr
          get_participant (void);

        DDSTopicDescription * get_impl (void);

        void set_impl (DDSTopicDescription * rc);

      private:
        DDSTopicDescription * impl_;

        DDSTopicDescription * impl (void);
      };
    }
  }
}

#endif /* CIAO_RTI_TOPICDESCRIPTION_H */