VR-Link API Documentation for HLA 1516
Home
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
include
managedInterface
linkStrategy.h
Go to the documentation of this file.
1
/*********************************************************************************
2
** Copyright (c) 2014 MAK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************************/
5
6
#pragma once
7
12
13
#include "
managedInterface/plugin.h
"
14
15
#include <
vlutil/vlPrint.h
>
16
17
#include <string>
18
#include <list>
19
20
class
DtMessage
;
21
class
DtManagedInterface
;
22
24
class
MANAGEDINTERFACE_DLL
DtLinkStrategy
25
{
26
public
:
28
DtLinkStrategy
(std::string name,
DtManagedInterface
* link);
29
31
virtual
~
DtLinkStrategy
();
32
34
std::string name();
35
38
virtual
bool
init()=0;
39
41
virtual
void
tick
();
42
44
virtual
void
shutdown();
45
48
//{@
49
virtual
void
addChildStrategy(
DtLinkStrategy
* strategy);
50
virtual
bool
removeChildStrategy(std::string name);
51
virtual
DtLinkStrategy
* findStrategy(std::string name);
53
54
protected
:
55
DtManagedInterface
*
myManagedInterface
;
56
std::string
myName
;
57
58
bool
myInitalized
;
59
60
std::list<DtLinkStrategy*>
myChildStrategies
;
61
};
Document ID: Generated on Thu Feb 22 04:26:36 EST 2018 from SVN revision 186468
Copyright © 2005-2016 VT MÄK. All Rights Reserved (
www.mak.com
)