VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrvCore
DtSensorIntParameterCommand.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2012 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
9
10
#pragma once
11
12
#include <
vrvCore/DtVrvCommand.h
>
13
14
namespace
makVrv
15
{
18
class
DT_DLL_VRVCORE
DtSensorIntParameterCommand
:
public
DtVrvCommand
19
{
20
public
:
21
DtSensorIntParameterCommand
();
22
virtual
~
DtSensorIntParameterCommand
();
23
25
virtual
std::string sensorModeName()
const
;
27
virtual
void
setSensorModeName(
const
std::string&
mode
);
28
30
virtual
std::string parameterName()
const
;
32
virtual
void
setParameterName(
const
std::string& obs);
33
35
virtual
int
parameterValue()
const
;
37
virtual
void
setParameterValue(
int
value );
38
40
virtual
void
execute(
DtDe
& de);
41
42
protected
:
43
std::string
mySensorModeName
;
44
std::string
myParameterName
;
45
int
myParameterValue
;
46
};
47
50
class
DT_DLL_VRVCORE
DtSensorIntParameterCommandCreator
:
public
DtVrvCommandCreator
51
{
52
public
:
53
DtSensorIntParameterCommandCreator
(
GlobalIdConvertFunc
func):
DtVrvCommandCreator
(func) {}
54
virtual
~DtSensorIntParameterCommandCreator
() {}
55
56
virtual
DtVrvCommand
* create(
vrvControlToolkit::DtVrvControl_v1
* control);
57
};
58
59
60
}
//makVrv::
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)