blob: d9520e923326e791e941e638aaf8419cc3202c99 (
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
70
71
72
73
74
|
// -*- C++ -*-
// ================================================================
/**
* @file Messaging.h
*
* Include all the required headers to use CORBA Messaging easily.
*
* @author Carlos O'Ryan <coryan@uci.edu>
*/
// ================================================================
#ifndef TAO_MESSAGING_H
#define TAO_MESSAGING_H
#include /**/ "ace/pre.h"
#include "tao/Messaging/messaging_export.h"
#define TAO_MESSAGING_SAFE_INCLUDE
#include "tao/Messaging/MessagingC.h"
#undef TAO_MESSAGING_SAFE_INCLUDE
#include "tao/Messaging/MessagingA.h"
#include "tao/Messaging/TAO_ExtC.h"
#include "tao/Policy_CurrentC.h"
#include "tao/Policy_ManagerC.h"
#include "tao/TAOC.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_Messaging_Export TAO_Messaging_Initializer
{
public:
/// Used to force the initialisation of the ORB code.
static int init (void);
};
static const int TAO_Requires_Messaging_Initializer = TAO_Messaging_Initializer::init ();
enum TAO_AMI_Reply_Status
{
/// Reply is normal.
TAO_AMI_REPLY_OK,
/// Reply is not normal and no exceptions
TAO_AMI_REPLY_NOT_OK,
/// An user exception was raised.
TAO_AMI_REPLY_USER_EXCEPTION,
/// An system exception was raised.
TAO_AMI_REPLY_SYSTEM_EXCEPTION,
/// A location forward exception was raised.
TAO_AMI_REPLY_LOCATION_FORWARD,
/// A location forward perm exception was raised.
TAO_AMI_REPLY_LOCATION_FORWARD_PERM
};
class TAO_InputCDR;
/// Typedef for the Reply Handler Skeleton.
/// This is handcrafted not generated by the IDL compiler.
typedef void (*TAO_Reply_Handler_Stub)(
TAO_InputCDR &,
Messaging::ReplyHandler_ptr,
CORBA::ULong reply_status);
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_MESSAGING_H */
|