summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/impl/ndds/DataReader.h
blob: 988d06d2dc8d20ab47ce4dd2d10e082129f736ea (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
/**
 * @author Johnny Willemsen (jwillemsen@remedy.nl)
 *
 * Wrapper facade for NDDS.
 */

#ifndef DATAREADER_H
#define DATAREADER_H

#include "dds4ccm/idl/ndds/ndds_dcpsC.h"
#include "dds4ccm/impl/ndds/dds4ccm_ndds_export.h"
#include "tao/LocalObject.h"

class DDSDataReader;

namespace CIAO
{
  namespace NDDS
  {
    class DDS4CCM_NDDS_Export DDS_DataReader_Base
      : public virtual ::DDS::DataReader,
        public virtual ::CORBA::LocalObject
    {
    public:
      virtual ~DDS_DataReader_Base (void);

      virtual ::DDSDataReader * get_rti_entity (void) = 0;

      virtual void set_rti_entity (::DDSDataReader* dr, ::DDS::DomainParticipant_ptr dp) = 0;
    };
  }
}

#endif