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
omtReader
fixedDatatypeNode.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 1992-2010 VT MAK
3
** All rights reserved.
4
*******************************************************************************/
7
#pragma once
8
9
10
11
#include "
omtNode.h
"
12
13
#include "
fieldComponentNode.h
"
14
15
#include <
vlutil/vlString.h
>
16
17
#include <list>
18
#include <iterator>
19
#ifdef DtUSE_UTILITIES_NAMESPACE
20
namespace
DtUSE_UTILITIES_NAMESPACE
21
{
22
#endif
23
class
DT_DLL_OMTREADER
DtFixedDatatypeNode
:
public
DtOMTNode
24
{
25
public
:
26
28
DtFixedDatatypeNode
();
29
31
virtual
~
DtFixedDatatypeNode
();
32
34
DtFixedDatatypeNode
(
const
DtFixedDatatypeNode
& orig);
35
37
DtFixedDatatypeNode
& operator=(
const
DtFixedDatatypeNode
& rhs);
38
39
virtual
void
setDescription(
const
DtString
&);
40
virtual
const
DtString
& getDescription()
const
;
41
42
virtual
void
setEncoding(
const
DtString
&);
43
virtual
const
DtString
& getEncoding()
const
;
44
45
virtual
void
addComponentNode(
DtFieldComponentNode
*);
46
47
virtual
DtFieldComponentNode
* getComponentNode(
const
DtString
& name);
48
virtual
std::list<DtFieldComponentNode*>::const_iterator getComponentNodeList()
const
;
49
virtual
std::list<DtFieldComponentNode*>::const_iterator getComponentNodeEnd()
const
;
50
51
52
protected
:
53
DtString
myDescription
;
54
DtString
myEncoding
;
55
std::list<DtFieldComponentNode*>
myComponentNodes
;
56
};
57
58
59
#ifdef DtUSE_UTILITIES_NAMESPACE
60
}
// end of namespace DtUSE_UTILITIES_NAMESPACE
61
#endif
Document ID: Generated on Tue Mar 1 02:56:17 EST 2016 from SVN revision 162687
Copyright © 2005-2014 VT MÄK. All Rights Reserved (
www.mak.com
)