16 #define DtDEC_ATTRIBUTE_CLEAR( T, N, n ) \
18 void set##N( const T& val ) { my##N = val; myb##N = true; } \
19 const T& n() const { return my##N; } \
20 const bool isset##N() const { return myb##N; } \
21 void clear##N() { myb##N = false; } \
22 T& n() { return my##N; } \
27 namespace MAKVrExchange
30 class DtPortalConnection;
40 typedef void (*functionCallback_type) (
51 functionCallback_type callbackFunction,
void* userData );
55 functionCallback_type callbackFunction,
void* userData );
102 virtual unsigned int netSize()
const;
103 virtual void writeSelfToBuffer(
void* buffer,
int bufferSize )
const;
104 virtual void readSelfFromBuffer(
const void* buffer,
int bufferSize );
106 virtual std::ostream& printDataToStream( std::ostream& stream )
const;
static DtPortalMessage * create()
Definition: pVrfChangeGlobalWeatherCommand.h:123
#define DT_DLL_LIBPORTAL
Definition: include/portal/dllExport.h:20
static const DtPortalMessageKind theKind
NOTE: DtDEC_ATTRIBUTE resets the access specifier to protected.
Definition: pVrfChangeGlobalWeatherCommand.h:98
DtPortalVrfChangeGlobalWeatherCommandInteraction()
CTOR.
The base class for all messages passed through the portal.
Definition: pMessage.h:65
Contains the DtPortalInteraction class declaration.
DtPortalInteractions are a special type of DtPortalMessages which are used to transmit simulation dat...
Definition: pInteraction.h:21
Connects a broker to the Portal Data Exchange.
Definition: pConnection.h:49
Vrf Change Global Weather Command Interaction class.
Definition: pVrfChangeGlobalWeatherCommand.h:34
DtPortalMessageKind
A List of message kinds distributed with the Portal.
Definition: pMessageKinds.h:23
#define DtDEC_ATTRIBUTE_CLEAR(T, N, n)
Redefine attribute macro. All attributes in this message are optional.
Definition: pVrfChangeGlobalWeatherCommand.h:16