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
vrfGuiCore
spotReportVisualHandler.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2011 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
10
11
#pragma once
12
13
#include <
vrfGuiCore/vrfGuiCore.h
>
14
#include <
vrfGuiCore/spotReportState.h
>
15
16
#include <
vrvCore/DtUniqueID.h
>
17
18
namespace
makVrv
19
{
20
class
DtDe;
21
}
22
23
namespace
makVrf
24
{
25
class
DT_DLL_VRFGUICORE
DtSpotReportVisualHandler
26
{
27
public
:
28
DtSpotReportVisualHandler
(
makVrv::DtDe
&,
makVrv::DtUniqueID
id
);
29
virtual
~
DtSpotReportVisualHandler
();
30
31
makVrv::DtUniqueID
uniqueID()
const
32
{
33
return
myUniqueId;
34
}
35
37
virtual
void
update(
const
DtSpotReportState
& s,
makVrv::DtUniqueID
id
) = 0;
38
41
virtual
bool
tick(
double
dT) = 0;
42
43
protected
:
44
makVrv::DtDe
&
myDe
;
45
makVrv::DtUniqueID
myUniqueId
;
46
};
47
48
class
DT_DLL_VRFGUICORE
DtSpotReportVisualHandlerCreatorInterface
49
{
50
public
:
51
virtual
~
DtSpotReportVisualHandlerCreatorInterface
();
52
53
virtual
DtSpotReportVisualHandler
* create(
makVrv::DtDe
&,
makVrv::DtUniqueID
) = 0;
54
};
55
}
Document ID: Generated on Tue Mar 8 22:13:38 EST 2016 from SVN revision 162938
Copyright © 2005-2015 VT MÄK. All Rights Reserved (
www.mak.com
)