VR-Link API Documentation for HLA 1516
Home
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
include
managedInterface
messages
printMessage.h
Go to the documentation of this file.
1
/*********************************************************************************
2
** Copyright (c) 2014 MAK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************************/
5
10
#pragma once
11
12
#include "
managedInterface/message.h
"
13
14
#include <string>
15
16
17
class
MANAGEDINTERFACE_DLL
PrintMessage
:
public
DtMessage
18
{
19
public
:
20
21
22
23
24
PrintMessage
();
25
virtual
~
PrintMessage
();
26
27
virtual
std::string getText();
28
virtual
void
setText(std::string val);
29
30
virtual
int
getNotifyLevel();
31
virtual
void
setNotifyLevel(
int
val);
32
33
34
35
virtual
int
messageSize
();
36
37
static
DtMessage
* decode(
unsigned
char
* buffer,
int
length);
38
static
std::string theMessageName();
39
40
protected
:
41
static
std::string
theFullName
;
42
43
std::string
myText
;
44
int
myNotifyLevel
;
45
46
virtual
void
serialize
(
DtStreamWriter
& writer);
47
virtual
void
deserialize
(
DtStreamReader
& reader);
48
};
Document ID: Generated on Fri Dec 2 02:42:08 EST 2016 from SVN revision 171416
Copyright © 2005-2016 VT MÄK. All Rights Reserved (
www.mak.com
)