VR-Forces Developer's Guide
Home
Modules
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrfMsgTransport
commentEvent.h
Go to the documentation of this file.
1
/****************************************************************************
2
* Copyright (c) 2022 MAK Technologies, Inc.
3
* All rights reserved.
4
****************************************************************************/
5
6
#pragma once
7
8
#include "
vrfMsgTransport/vrfMsgTransportDefines.h
"
9
#include "
vrfMsgTransport/event.h
"
10
#include "
vrfutil/rwUUID.h
"
11
12
namespace
makVrfEvents
13
{
14
15
class
DT_DLL_vrfMsgTransport
DtCommentEvent
:
public
DtEvent
16
{
17
public
:
18
DtCommentEvent
();
19
DtCommentEvent
(
const
DtUUID
& sender,
const
DtString
& comment);
20
DtCommentEvent
(
const
DtCommentEvent
&);
21
DtCommentEvent
& operator=(
const
DtCommentEvent
&);
22
23
virtual
~
DtCommentEvent
()
override
;
24
25
virtual
void
setComment(
const
DtString
&);
26
const
DtString
& comment()
const
;
27
28
virtual
void
setSenderId(
const
DtUUID
& sender);
29
const
DtUUID
& senderId()
const
;
30
31
virtual
DtEvent
* clone()
const override
{
return
new
DtCommentEvent
(*
this
); };
32
33
protected
:
34
DtUUID
mySender;
35
DtString
myComment
;
36
};
37
38
}
39
40
41
typedef
void (*
DtCommentCallbackFcn
)(
const
makVrfEvents::DtCommentEvent
*,
void
* usr);
DtUUID
UUID is a unique ID wrapper class.
Definition:
uuid.h:59
makVrfEvents::DtCommentEvent
Definition:
commentEvent.h:15
vrfMsgTransportDefines.h
rwUUID.h
Contains the DtUUID class declaration.
makVrfEvents::DtEvent
Definition:
event.h:13
event.h
DtCommentCallbackFcn
void(* DtCommentCallbackFcn)(const makVrfEvents::DtCommentEvent *, void *usr)
Definition:
commentEvent.h:41
DT_DLL_vrfMsgTransport
#define DT_DLL_vrfMsgTransport
This file is used to determine how to build Disable inconsistent dll linkage warning Visual Studio 6...
Definition:
vrfCommunicationManagerDefines.h:26
makVrfEvents::DtCommentEvent::myComment
DtString myComment
Definition:
commentEvent.h:35
DtString
Document ID: Generated on Thu Oct 23 22:29:17 EDT 2025 from SVN revision 280951
Copyright © 2005-2024 MAK Technologies. All Rights Reserved (
www.mak.com
)