summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/impl/ndds/Reader.cpp
blob: 1dc381462509db954895ed9b0c2bf7470c6435f3 (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
// $Id$

#include "Reader.h"

// Implementation skeleton constructor
CCM_DDS_string_Reader_i::CCM_DDS_string_Reader_i (void)
{
}

// Implementation skeleton destructor
CCM_DDS_string_Reader_i::~CCM_DDS_string_Reader_i (void)
{
}

void CCM_DDS_string_Reader_i::read_all (
  ::CCM_DDS::string_Reader::stringSeq_out instances,
  ::CCM_DDS::ReadInfoSeq_out infos)
{
  // Add your implementation here
}

void CCM_DDS_string_Reader_i::read_all_history (
  ::CCM_DDS::string_Reader::stringSeq_out instances,
  ::CCM_DDS::ReadInfoSeq_out infos)
{
  // Add your implementation here
}

void CCM_DDS_string_Reader_i::read_one (
  char *& an_instance,
  ::CCM_DDS::ReadInfo_out info)
{
  // Add your implementation here
}

void CCM_DDS_string_Reader_i::read_one_history (
  const char * an_instance,
  ::CCM_DDS::string_Reader::stringSeq_out instances,
  ::CCM_DDS::ReadInfoSeq_out infos)
{
  // Add your implementation here
}

::CCM_DDS::QueryFilter * CCM_DDS_string_Reader_i::filter (void)
{
  // Add your implementation here
}

void CCM_DDS_string_Reader_i::filter (
  const ::CCM_DDS::QueryFilter & filter)
{
  // Add your implementation here
}