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
vrfutil
rwDynamicTerrainInformation.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2016 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
8
9
#pragma once
10
11
#include <
vrfutil/vrfutilDefines.h
>
12
#include <
vrfutil/templatedDecoders.h
>
13
#include <
vrfutil/rwStringList.h
>
14
#include <
vrfutil/rwTemplatedList.h
>
15
#include <
vrfutil/rwVector.h
>
16
#include <
vrfutil/rwDynamicTerrainChangeInformation.h
>
17
18
#include <vector>
19
21
class
DT_DLL_vrfutil
DtRwDynamicTerrainInformation
:
public
DtReaderWriter
22
{
23
public
:
25
26
DtRwDynamicTerrainInformation
();
27
28
DtRwDynamicTerrainInformation
(
const
DtString
& name,
29
DtReaderWriterRegistry
*
const
parentRegistry = NULL);
30
DtRwDynamicTerrainInformation
(
const
DtSymbolString
& name,
31
DtReaderWriterRegistry
*
const
parentRegistry = NULL);
32
33
DtRwDynamicTerrainInformation
(
const
DtRwDynamicTerrainInformation
& orig,
34
DtReaderWriterRegistry
*
const
parentRegistry = NULL);
36
38
virtual
~
DtRwDynamicTerrainInformation
();
39
41
DtRwDynamicTerrainInformation
&
operator=
(
const
DtRwDynamicTerrainInformation
&);
42
44
45
virtual
void
setLocation
(
const
DtVector
& l) { myLocation = l; }
46
virtual
const
DtVector
&
location
()
const
{
return
myLocation; }
48
50
51
virtual
void
setDescription
(
const
DtString
& d) { myDescription = d; }
52
virtual
const
DtString
&
description
()
const
{
return
myDescription; }
54
56
57
virtual
void
setChanges
(
const
DtRwDynamicTerrainChangeInformationList
& c) { myChanges = c; }
58
virtual
const
DtRwDynamicTerrainChangeInformationList
&
changes
()
const
{
return
myChanges; }
59
virtual
DtRwDynamicTerrainChangeInformationList
&
changes
() {
return
myChanges; }
60
virtual
void
addChange(
const
DtRwDynamicTerrainChangeInformation
& c);
62
63
protected
:
64
DtRwVector
myLocation
;
65
DtRwString
myDescription
;
66
DtRwDynamicTerrainChangeInformationList
myChanges
;
67
};
68
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
)