VR-Link API Documentation for HLA Evolved
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
setEntityThresholds.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
SetEntityThresholdsMessage
:
public
DtMessage
18
{
19
public
:
20
21
22
23
24
SetEntityThresholdsMessage
();
25
virtual
~
SetEntityThresholdsMessage
();
26
27
virtual
bool
getSingleEntity();
28
virtual
void
setSingleEntity(
bool
val);
29
30
virtual
std::string getEntityId();
31
virtual
void
setEntityId(std::string val);
32
33
virtual
float
getRotationThreshold();
34
virtual
void
setRotationThreshold(
float
val);
35
36
virtual
float
getTranslationTheshold();
37
virtual
void
setTranslationTheshold(
float
val);
38
39
40
41
virtual
int
messageSize
();
42
43
static
DtMessage
* decode(
unsigned
char
* buffer,
int
length);
44
static
std::string theMessageName();
45
46
protected
:
47
static
std::string
theFullName
;
48
49
bool
mySingleEntity
;
50
std::string
myEntityId
;
51
float
myRotationThreshold
;
52
float
myTranslationTheshold
;
53
54
virtual
void
serialize
(
DtStreamWriter
& writer);
55
virtual
void
deserialize
(
DtStreamReader
& reader);
56
};
Document ID: Generated on Thu Feb 22 04:26:36 EST 2018 from SVN revision 186468
Copyright © 2005-2016 VT MÄK. All Rights Reserved (
www.mak.com
)