VR-Forces 4.2 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
include
vrfGuiCore
DtSpotReportVisualHandler.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/DtSpotReportState.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 Sun Nov 24 19:49:21 EST 2013 from SVN revision 133924
Copyright © 2005-2013 VT MÄK. All Rights Reserved (
www.mak.com
)