blob: 602f3d1e6de0da2d2bfbd93aa23efd67a6a0e5b1 (
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
|
/* -*- C++ -*- */
/**
* @file Name.h
*
* $Id$
*
* @author Pradeep Gore <pradeep@oomworks.com>
*
*
*/
#ifndef TAO_Notify_Tests_NAME_H
#define TAO_Notify_Tests_NAME_H
#include /**/ "ace/pre.h"
#include "notify_test_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
/**
* @class TAO_Notify_Tests_Name
*
* @brief Define the names for command objects and other common strings.
*
*/
class TAO_NOTIFY_TEST_Export TAO_Notify_Tests_Name
{
public:
static const char* const root_poa;
static const char* const event_channel_factory;
static const char* const naming_service;
static const char* const command_builder;
static const char* const application_command_factory;
static const char* const application_command;
static const char* const event_channel_command_factory;
static const char* const event_channel_command;
static const char* const supplier_admin_command_factory;
static const char* const supplier_admin_command;
static const char* const consumer_admin_command_factory;
static const char* const consumer_admin_command;
static const char* const periodic_supplier_command;
static const char* const periodic_supplier_command_factory;
static const char* const periodic_consumer_command;
static const char* const periodic_consumer_command_factory;
static const char* const poa_command;
static const char* const poa_command_factory;
static const char* const filter_command;
static const char* const filter_command_factory;
};
#include /**/ "ace/post.h"
#endif /* TAO_Notify_Tests_NAME_H */
|