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
rwEntityIdentifier.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2015 MaK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
8
16
17
#pragma once
18
19
#include "
vrfutil/vrfutilDefines.h
"
20
#include <vlpi/entityIdentifier.h>
21
#include "
vrfutil/readerWriter.h
"
22
23
class
DT_DLL_vrfutil
DtRwEntityIdentifier
:
public
DtReaderWriter
,
public
DtEntityIdentifier
24
{
25
public
:
27
DtRwEntityIdentifier
(
const
DtString
& name = DtString::nullString(),
28
DtReaderWriterRegistry
* parentRegistry = NULL);
29
30
DtRwEntityIdentifier
(
const
DtSymbolString
& name,
31
DtReaderWriterRegistry
* parentRegistry = NULL);
32
34
DtRwEntityIdentifier
(
const
DtEntityIdentifier&
id
,
35
const
DtString
& name,
36
DtReaderWriterRegistry
* parentRegistry = NULL);
37
38
DtRwEntityIdentifier
(
const
DtEntityIdentifier& entityType,
39
const
DtSymbolString
& name,
40
DtReaderWriterRegistry
* parentRegistry = NULL);
41
42
DtRwEntityIdentifier
(
const
DtRwEntityIdentifier
& name);
43
45
DtRwEntityIdentifier
(
const
DtRwEntityIdentifier
& orig,
46
DtReaderWriterRegistry
* parentRegistry);
47
49
DtRwEntityIdentifier
&
operator=
(
const
DtRwEntityIdentifier
& orig);
50
52
DtRwEntityIdentifier
&
operator=
(
const
DtEntityIdentifier& orig);
53
54
virtual
~
DtRwEntityIdentifier
();
55
56
virtual
void
putData
(std::string& fp,
int
indentlLevel = 0);
57
virtual
DtlObjPtr
getData
(DtlObjPtr args,
const
DtReaderWriter::SearchPaths
& searchPaths,
58
const
DtVariableBindingsList
& variableBindings);
59
63
virtual
const
char
*
readerWriterType
()
const
;
64
66
virtual
DtString
prettyPrint
()
const
;
67
70
virtual
void
putData
(
DtEnvironmentSP
, DtEnvValueSP parent)
const
;
71
virtual
void
getData
(
const
DtEnvironmentSP
,
const
DtEnvValueSP value,
72
const
DtReaderWriter::SearchPaths
& searchPaths =
DtReaderWriter::SearchPaths
(),
73
const
DtVariableBindingsList
& bindings =
DtVariableBindingsList
());
74
76
static
const
char
*
theXmlType
();
77
78
virtual
const
char
*
xmlType
()
const
79
{
80
return
theXmlType
();
81
}
83
84
bool
operator==
(
const
DtRwEntityIdentifier
&)
const
;
85
bool
operator!=
(
const
DtRwEntityIdentifier
& rhs)
const
{
return
!(*
this
== rhs); };
86
87
bool
operator==
(
const
DtEntityIdentifier&)
const
;
88
bool
operator!=
(
const
DtEntityIdentifier& rhs)
const
{
return
!(*
this
== rhs); };
89
};
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
)