VR-Forces 4.5 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
DtSensorStringParameterCommand.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
DtSensorStringParameterCommand
:
public
DtVrvCommand
19
{
20
public
:
21
DtSensorStringParameterCommand
();
22
virtual
~
DtSensorStringParameterCommand
();
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
std::string parameterValue()
const
;
37
virtual
void
setParameterValue(
const
std::string& value );
38
40
virtual
void
execute(
DtDe
& de);
41
42
protected
:
43
std::string
mySensorModeName
;
44
std::string
myParameterName
;
45
std::string
myParameterValue
;
46
};
47
50
class
DT_DLL_VRVCORE
DtSensorStringParameterCommandCreator
:
public
DtVrvCommandCreator
51
{
52
public
:
53
DtSensorStringParameterCommandCreator
(
GlobalIdConvertFunc
func):
DtVrvCommandCreator
(func) {}
54
virtual
~DtSensorStringParameterCommandCreator
() {}
55
56
virtual
DtVrvCommand
* create(
vrvControlToolkit::DtVrvControl_v1
* control);
57
};
58
59
60
}
//makVrv::
Document ID: Generated on Thu Mar 23 18:54:12 EDT 2017 from SVN revision 174804
Copyright © 2005-2017 VT MÄK. All Rights Reserved (
www.mak.com
)