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
DtHideModelOnAttachCommand.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2015 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
10
11
#pragma once
12
13
#include <
vrvCore/DtVrvCommand.h
>
14
15
#include <matrix/vlTaitBryan.h>
16
#include <matrix/vlVector.h>
17
18
namespace
makVrv
19
{
23
class
DT_DLL_VRVCORE
DtHideModelOnAttachCommand
:
public
DtVrvCommand
24
{
25
public
:
26
DtHideModelOnAttachCommand
();
27
virtual
~
DtHideModelOnAttachCommand
();
28
29
virtual
std::string observer();
30
virtual
void
setObserver(
const
std::string& newObs);
31
32
virtual
bool
hideModelOnAttach()
const
;
33
virtual
void
setHideModelOnAttach(
bool
hideOnAttach );
34
35
virtual
void
execute(
DtDe
& de);
36
37
protected
:
38
std::string
myObserver
;
39
bool
myHideModelOnAttach
;
40
};
41
44
class
DT_DLL_VRVCORE
DtHideModelOnAttachCommandCreator
:
public
DtVrvCommandCreator
45
{
46
public
:
47
DtHideModelOnAttachCommandCreator
(
GlobalIdConvertFunc
func)
48
:
DtVrvCommandCreator
(func)
49
{
50
}
51
virtual
~
DtHideModelOnAttachCommandCreator
()
52
{
53
}
54
55
virtual
DtVrvCommand
* create(
vrvControlToolkit::DtVrvControl_v1
* control);
56
57
private
:
58
DtHideModelOnAttachCommandCreator
();
59
60
};
61
62
}
//makVrv::
63
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
)