VR-Forces 4.6 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
vrfGuiCore
spotReportDataHandler.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2015 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
14
15
#pragma once
16
17
#include <
vrfGuiCore/vrfGuiCore.h
>
18
#include <
vrfGuiCore/spotReportState.h
>
19
20
#include <
vrvUtil/signalslib.h
>
21
#include <
vrvCore/DtUniqueID.h
>
22
23
namespace
makVrv
24
{
25
class
DtDe;
26
struct
DtSimState;
27
}
28
29
namespace
makVrf
30
{
31
class
DtSpotReportHandler;
32
class
DtSpotReportDataHandlerCreatorInterface;
33
class
DtSpotReportStateObjectAgent;
34
35
class
DT_DLL_VRFGUICORE
DtSpotReportDataHandler
36
{
37
public
:
38
DtSpotReportDataHandler
(
makVrv::DtDe
&,
makVrv::DtUniqueID
);
39
virtual
~
DtSpotReportDataHandler
();
40
44
virtual
bool
update(
void
*) = 0;
45
47
virtual
bool
objectEntryRemoved(
makVrv::DtUniqueID
,
makVrv::DtSimState
*) = 0;
48
49
virtual
const
std::set<makVrv::DtUniqueID>& observedBy()
const
= 0;
50
51
virtual
void
updateState(
DtSpotReportState
&);
52
54
virtual
bool
flushData(
bool
force =
false
) = 0;
55
57
virtual
void
idleTick() = 0;
58
59
makVrv::DtUniqueID
uniqueId()
const
60
{
61
return
myUniqueID;
62
}
63
64
protected
:
65
makVrv::DtUniqueID
myUniqueID
;
66
makVrv::DtDe
&
myDe
;
67
DtSpotReportStateObjectAgent*
myAgent
;
68
};
69
70
class
DT_DLL_VRFGUICORE
DtSpotReportDataHandlerCreatorInterface
71
{
72
public
:
73
virtual
~
DtSpotReportDataHandlerCreatorInterface
();
74
75
virtual
DtSpotReportDataHandler
* create(
makVrv::DtDe
&,
makVrv::DtUniqueID
) = 0;
76
};
77
}
Document ID: Generated on Thu Apr 12 03:15:37 EDT 2018 from SVN revision 187986
Copyright © 2005-2018 VT MÄK. All Rights Reserved (
www.mak.com
)