VR-Forces 4.3.1 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/vrvCore.h
>
13
#include <
vrvCore/DtTickable.h
>
14
#include <
vrvCore/DtUniqueID.h
>
15
16
#include <boost/signals.hpp>
17
18
namespace
makVrv
19
{
20
class
DtDe;
21
class
DtModel;
22
27
// during the manager 'tick' update.
29
class
DT_DLL_VRVCORE
DtRotorWashUpdater
:
public
DtTickable
30
{
31
public
:
32
36
DtRotorWashUpdater
(
DtDe
& de,
DtUniqueID
id
);
37
39
virtual
~
DtRotorWashUpdater
();
40
45
virtual
void
update(
DtTime
tNow ) = 0;
46
49
virtual
DtTime
lastUpdateTime()
const
;
50
53
virtual
void
setRotorWashModel(
DtModel
* rotorWashModel );
54
56
inline
DtUniqueID
uniqueId()
const
57
{
58
return
myUniqueId;
59
}
60
61
protected
:
62
64
DtDe
&
myDe
;
65
67
DtUniqueID
myUniqueId
;
68
70
DtModel
*
myRotorWashModel
;
71
73
DtTime
myLastUpdateTime
;
74
};
75
}
Document ID: Generated on Wed Jul 29 00:55:00 EDT 2015 from SVN revision 155257
Copyright © 2005-2015 VT MÄK. All Rights Reserved (
www.mak.com
)