blob: 77b9a2c5c71e129a1b0570af91481a7ad4a85a9c (
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
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// ace
//
// = FILENAME
// SV_Message.h
//
// = AUTHOR
// Doug Schmidt
//
// ============================================================================
#ifndef ACE_SV_MESSAGE_H
#define ACE_SV_MESSAGE_H
#include "ace/ACE.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class ACE_Export ACE_SV_Message
{
// = TITLE
// Defines the header file for the C++ wrapper for message queues. */
public:
// = Initialization and termination methods.
ACE_SV_Message (long type = 0);
~ACE_SV_Message (void);
// = Get/set the message type.
long type (void) const;
void type (long);
void dump (void) const;
// Dump the state of an object.
ACE_ALLOC_HOOK_DECLARE;
// Declare the dynamic allocation hooks.
protected:
long type_;
// Type of the message.
};
#if defined (__ACE_INLINE__)
#include "ace/SV_Message.i"
#endif /* __ACE_INLINE__ */
#endif /* ACE_SV_MESSAGE_H */
|