VR-Forces 4.3.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
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 Wed Jul 29 00:55:00 EDT 2015 from SVN revision 155257
Copyright © 2005-2015 VT MÄK. All Rights Reserved (
www.mak.com
)