blob: 2d52267b1e0a595525ef01c9751cacf22787447f (
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)
*
* Wrapper facade for NDDS.
*/
#ifndef DOMAINPARTICIPANTFACTORY_T_H_
#define DOMAINPARTICIPANTFACTORY_T_H_
#include "dds4ccm/idl/ndds/ndds_dcpsC.h"
#include "tao/LocalObject.h"
#include "dds4ccm/impl/ndds/dds4ccm_ndds_export.h"
namespace CIAO
{
namespace NDDS
{
class DDS4CCM_NDDS_Export DDS_DomainParticipantFactory_i :
public virtual ::DDS::DomainParticipantFactory,
public virtual ::CORBA::LocalObject
{
public:
friend class ACE_Singleton<DDS_DomainParticipantFactory_i, TAO_SYNCH_MUTEX>;
/// Constructor
DDS_DomainParticipantFactory_i (void);
/// Destructor
virtual ~DDS_DomainParticipantFactory_i (void);
virtual ::DDS::DomainParticipant_ptr create_participant (
::DDS::DomainId_t domain_id,
const ::DDS::DomainParticipantQos & qos,
::DDS::DomainParticipantListener_ptr a_listener,
::DDS::StatusMask mask);
virtual ::DDS::DomainParticipant_ptr create_participant_with_profile (
::DDS::DomainId_t domain_id,
const char * qos_profile,
::DDS::DomainParticipantListener_ptr a_listener,
::DDS::StatusMask mask);
virtual ::DDS::ReturnCode_t delete_participant (
::DDS::DomainParticipant_ptr a_participant);
virtual ::DDS::DomainParticipant_ptr lookup_participant (
::DDS::DomainId_t domain_id);
virtual
::DDS::ReturnCode_t set_default_participant_qos (const ::DDS::DomainParticipantQos & qos);
virtual
::DDS::ReturnCode_t get_default_participant_qos (::DDS::DomainParticipantQos & qos);
virtual
::DDS::ReturnCode_t set_qos (const ::DDS::DomainParticipantFactoryQos & qos);
virtual
::DDS::ReturnCode_t get_qos (::DDS::DomainParticipantFactoryQos & qos);
virtual ::DDS::ReturnCode_t set_default_participant_qos_with_profile(
const char * qos_profile);
};
}
}
#endif /* DOMAINPARTICIPANTFACTORY_T_H_ */
|