VR-Link API Documentation for HLA 1.3
Home
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
include
mtl
envEnum.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 1992-2010 VT MAK
3
** All rights reserved.
4
******************************************************************************/
5
6
10
11
#ifndef envEnumH_H
12
#define envEnumH_H
13
15
enum
DtValueType
16
{
17
Empty
= 0,
18
Any
= 1,
19
String
=
Any
<< 1,
20
Integer
=
String
<< 1,
21
Float
=
Integer
<< 1,
22
Class
=
Float
<< 1,
23
Number
=
Integer
|
Float
24
Reserved =
Class
<< 1;
25
};
26
28
enum
DtAttribFlag
29
{
30
Unique
= 1,
31
Required
=
Unique
<< 1,
32
Enumerate
= Implied << 1,
33
};
34
35
#endif
Document ID: Generated on Wed Oct 23 22:25:48 EDT 2013 from SVN revision 132765
Copyright © 2005-2013 VT MÄK. All Rights Reserved (
www.mak.com
)