VR-Forces 4.7 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
vrfobjparam
detonationResultParam.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2018 MaK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
8
9
#pragma once
10
11
#include <
readerWriter/rwString.h
>
12
#include <
vrfobjparam/vrfobjparamDefines.h
>
13
15
class
DT_DLL_vrfobjparam
DtDetonationResultParam
:
public
DtReaderWriter
16
{
17
public
:
19
DtDetonationResultParam
();
20
22
DtDetonationResultParam
(
const
DtString
& name,
DtReaderWriterRegistry
*
23
parentRegistry = NULL);
24
25
DtDetonationResultParam
(
const
DtSymbolString
& name,
DtReaderWriterRegistry
*
26
parentRegistry = NULL);
27
29
DtDetonationResultParam
(
const
DtString
& name,
const
DtDetonationResultParam
& orig,
30
DtReaderWriterRegistry
* parentRegistry = NULL);
31
32
DtDetonationResultParam
(
const
DtSymbolString
& name,
const
DtDetonationResultParam
& orig,
33
DtReaderWriterRegistry
* parentRegistry = NULL);
34
36
const
DtDetonationResultParam
&
operator=
(
const
DtDetonationResultParam
& orig);
37
39
virtual
~
DtDetonationResultParam
();
40
41
virtual
DtDetonationResultParam
* clone(
const
DtString
& name,
42
DtReaderWriterRegistry
* parentRegistry = NULL)
const
;
43
44
virtual
DtDetonationResultParam
* clone(
const
DtSymbolString
& name,
45
DtReaderWriterRegistry
* parentRegistry = NULL)
const
;
46
49
virtual
int
detonationResult()
const
;
50
virtual
void
setDetonationResult(
int
r);
52
54
bool
operator==
(
const
DtDetonationResultParam
& rhs)
const
;
55
bool
operator!=
(
const
DtDetonationResultParam
& rhs)
const
56
{
57
return
!(*
this
== rhs);
58
}
59
61
static
std::map<DtString, unsigned>& detonationResultMapping();
62
63
protected
:
64
68
73
DtRwString
myDetonationResultString
;
74
76
79
mutable
unsigned
myDetonationResult
;
80
mutable
bool
myDetonationResultConverted
;
81
};
82
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)