VR-Link API Documentation for HLA 1.3
Home
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
include
vl
stateRepositoryExtension.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 1992-2020 VT MAK
3
** All rights reserved.
4
*********************************************************************/
5
8
9
#pragma once
10
11
#include <
vlutil/vlString.h
>
12
15
#define Dt_DEF_EXTENSION_NAME( strname )\
16
static const DtString& extensionName()\
17
{\
18
static DtString tName = strname;\
19
return tName;\
20
}
21
22
class
DtStateRepositoryExtension
23
{
24
public
:
25
DtStateRepositoryExtension
(
DtString
extensionName ) :
myExtensionName
( extensionName ) {};
26
27
virtual
~DtStateRepositoryExtension
() {};
28
29
virtual
DtString
getName
() {
return
myExtensionName
; };
30
31
protected
:
32
DtString
myExtensionName
;
33
};
Document ID: Generated on Mon Jun 22 21:18:40 EDT 2020 from SVN revision 213785
Copyright © 2005-2018 MAK Technologies. All Rights Reserved (
www.mak.com
)