VR-Forces 4.3 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
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 Wed Mar 11 21:20:57 EDT 2015 from SVN revision 150940
Copyright © 2005-2014 VT MÄK. All Rights Reserved (
www.mak.com
)