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
DtSensorModeCommand.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
DtSensorModeCommand
:
public
DtVrvCommand
19
{
20
public
:
21
DtSensorModeCommand
();
22
virtual
~
DtSensorModeCommand
();
23
24
virtual
std::string observerModeName()
const
;
25
virtual
void
setObserverModeName(
const
std::string& obs);
26
27
virtual
std::string sensorModeName()
const
;
28
virtual
void
setSensorModeName(
const
std::string&
mode
);
29
30
virtual
void
execute(
DtDe
& de);
31
32
protected
:
33
std::string
myObserverModeName
;
34
std::string
mySensorModeName
;
35
};
36
39
class
DT_DLL_VRVCORE
DtSensorModeCommandCreator
:
public
DtVrvCommandCreator
40
{
41
public
:
42
DtSensorModeCommandCreator
(
GlobalIdConvertFunc
func):
DtVrvCommandCreator
(func) {}
43
virtual
~DtSensorModeCommandCreator
() {}
44
45
virtual
DtVrvCommand
* create(
vrvControlToolkit::DtVrvControl_v1
* control);
46
};
47
48
49
}
//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
)