VR-Forces Development_Version 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
DtRotorWashUpdater.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2013 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
9
10
#pragma once
11
12
#include <
vrvCore/DtTickable.h
>
13
#include <
vrvCore/DtUniqueID.h
>
14
15
#include <boost/signals.hpp>
16
17
namespace
makVrv
18
{
19
class
DtDe;
20
class
DtModel;
21
26
// during the manager 'tick' update.
28
class
DT_DLL_VRVCORE
DtRotorWashUpdater
:
public
DtTickable
29
{
30
public
:
31
35
DtRotorWashUpdater
(
DtDe
& de,
DtUniqueID
id
);
36
38
virtual
~
DtRotorWashUpdater
();
39
44
virtual
void
update(
DtTime
tNow ) = 0;
45
48
virtual
DtTime
lastUpdateTime()
const
;
49
52
virtual
void
setRotorWashModel(
DtModel
* rotorWashModel );
53
55
inline
DtUniqueID
uniqueId()
const
56
{
57
return
myUniqueId;
58
}
59
60
protected
:
61
63
DtDe
&
myDe
;
64
66
DtUniqueID
myUniqueId
;
67
69
DtModel
*
myRotorWashModel
;
70
72
DtTime
myLastUpdateTime
;
73
};
74
}
Document ID: Generated on Mon Jul 4 01:00:18 EDT 2016 from SVN revision 166489
Copyright © 2005-2015 VT MÄK. All Rights Reserved (
www.mak.com
)