Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Simox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Leander Singer
Simox
Commits
1b72df08
Commit
1b72df08
authored
6 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Renamed elem to _element
parent
ae5bce0e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
VirtualRobot/MJCF/elements/core/Element.h
+22
-21
22 additions, 21 deletions
VirtualRobot/MJCF/elements/core/Element.h
with
22 additions
and
21 deletions
VirtualRobot/MJCF/elements/core/Element.h
+
22
−
21
View file @
1b72df08
...
...
@@ -136,7 +136,7 @@ namespace mjcf
// OPERATORS
/// Indicate whether this contains a valid element.
operator
bool
()
const
{
return
elem
!=
nullptr
;
}
operator
bool
()
const
{
return
_
elem
ent
!=
nullptr
;
}
template
<
typename
Derived
>
friend
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
Element
<
Derived
>&
element
);
...
...
@@ -147,8 +147,8 @@ namespace mjcf
Document
&
document
()
{
return
*
_document
;
}
const
Document
&
document
()
const
{
return
*
_document
;
}
tinyxml2
::
XMLElement
*
element
()
{
return
elem
;
}
const
tinyxml2
::
XMLElement
*
element
()
const
{
return
elem
;
}
tinyxml2
::
XMLElement
*
element
()
{
return
_
elem
ent
;
}
const
tinyxml2
::
XMLElement
*
element
()
const
{
return
_
elem
ent
;
}
private
:
...
...
@@ -164,13 +164,14 @@ namespace mjcf
const
std
::
string
&
attrName
,
const
std
::
string
&
attrValue
)
const
;
Document
*
_document
;
tinyxml2
::
XMLElement
*
elem
;
tinyxml2
::
XMLElement
*
_
elem
ent
;
};
template
<
class
D
>
Element
<
D
>::
Element
(
Document
*
document
,
tinyxml2
::
XMLElement
*
elem
)
:
_document
(
document
),
elem
(
elem
)
Element
<
D
>::
Element
(
Document
*
document
,
tinyxml2
::
XMLElement
*
elem
ent
)
:
_document
(
document
),
_
elem
ent
(
elem
ent
)
{
assertElemValueEqualsTag
();
}
...
...
@@ -178,14 +179,14 @@ namespace mjcf
template
<
class
D
>
bool
Element
<
D
>::
isAttributeSet
(
const
std
::
string
&
attrName
)
const
{
return
elem
->
Attribute
(
attrName
.
c_str
())
!=
nullptr
;
return
_
elem
ent
->
Attribute
(
attrName
.
c_str
())
!=
nullptr
;
}
template
<
class
D
>
template
<
typename
AttrT
>
AttrT
Element
<
D
>::
getAttribute
(
const
std
::
string
&
name
)
const
{
const
char
*
attr
=
elem
->
Attribute
(
name
.
c_str
());
const
char
*
attr
=
_
elem
ent
->
Attribute
(
name
.
c_str
());
if
(
!
attr
)
{
throw
AttribNotSetError
(
name
);
...
...
@@ -207,14 +208,14 @@ namespace mjcf
void
Element
<
D
>::
setAttribute
(
const
std
::
string
&
name
,
const
AttrT
&
value
)
{
std
::
string
attrStr
=
toAttr
(
value
);
elem
->
SetAttribute
(
name
.
c_str
(),
attrStr
.
c_str
());
_
elem
ent
->
SetAttribute
(
name
.
c_str
(),
attrStr
.
c_str
());
}
template
<
class
D
>
std
::
vector
<
std
::
string
>
Element
<
D
>::
getSetAttributeNames
()
const
{
std
::
vector
<
std
::
string
>
names
;
for
(
auto
*
attr
=
elem
->
FirstAttribute
();
attr
;
attr
=
attr
->
Next
())
for
(
auto
*
attr
=
_
elem
ent
->
FirstAttribute
();
attr
;
attr
=
attr
->
Next
())
{
names
.
emplace_back
(
attr
->
Name
());
}
...
...
@@ -224,7 +225,7 @@ namespace mjcf
template
<
class
D
>
bool
Element
<
D
>::
hasChildren
()
const
{
return
!
elem
->
NoChildren
();
return
!
_
elem
ent
->
NoChildren
();
}
template
<
class
D
>
...
...
@@ -252,7 +253,7 @@ namespace mjcf
template
<
class
OtherD
>
OtherD
Element
<
D
>::
firstChild
()
const
{
return
OtherD
(
_document
,
/*may be null*/
elem
->
FirstChildElement
(
OtherD
::
tag
.
c_str
()));
return
OtherD
(
_document
,
/*may be null*/
_
elem
ent
->
FirstChildElement
(
OtherD
::
tag
.
c_str
()));
}
template
<
class
D
>
...
...
@@ -283,7 +284,7 @@ namespace mjcf
template
<
class
OtherD
>
OtherD
Element
<
D
>::
nextSiblingElement
()
const
{
return
OtherD
(
_document
,
elem
->
NextSiblingElement
(
OtherD
::
tag
.
c_str
()));
return
OtherD
(
_document
,
_
elem
ent
->
NextSiblingElement
(
OtherD
::
tag
.
c_str
()));
}
template
<
class
D
>
...
...
@@ -332,35 +333,35 @@ namespace mjcf
template
<
class
OtherD
>
void
Element
<
D
>::
insertFirstChild
(
const
Element
<
OtherD
>&
element
)
{
elem
->
InsertFirstChild
(
element
.
elem
);
_
elem
ent
->
InsertFirstChild
(
element
.
_
elem
ent
);
}
template
<
class
D
>
template
<
class
OtherD
>
void
Element
<
D
>::
insertEndChild
(
const
Element
<
OtherD
>&
element
)
{
elem
->
InsertEndChild
(
element
.
elem
);
_
elem
ent
->
InsertEndChild
(
element
.
_
elem
ent
);
}
template
<
class
D
>
template
<
class
OtherD
>
void
Element
<
D
>::
deleteChild
(
const
Element
<
OtherD
>&
element
)
{
elem
->
DeleteChild
(
element
.
elem
);
_
elem
ent
->
DeleteChild
(
element
.
_
elem
ent
);
}
template
<
class
D
>
auto
Element
<
D
>::
deepClone
()
const
->
Derived
{
return
{
_document
,
elem
->
DeepClone
(
nullptr
)
->
ToElement
()
};
return
{
_document
,
_
elem
ent
->
DeepClone
(
nullptr
)
->
ToElement
()
};
}
template
<
class
D
>
template
<
class
OtherD
>
OtherD
Element
<
D
>::
transform
()
{
elem
->
SetValue
(
OtherD
::
tag
.
c_str
());
return
{
_document
,
elem
};
_
elem
ent
->
SetValue
(
OtherD
::
tag
.
c_str
());
return
{
_document
,
_
elem
ent
};
}
template
<
class
D
>
...
...
@@ -387,7 +388,7 @@ namespace mjcf
template
<
class
D
>
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
Element
<
D
>&
element
)
{
os
<<
"MJCF Element '"
<<
D
::
tag
<<
"' (-> "
<<
element
.
elem
<<
")"
;
os
<<
"MJCF Element '"
<<
D
::
tag
<<
"' (-> "
<<
element
.
_
elem
ent
<<
")"
;
return
os
;
}
...
...
@@ -409,6 +410,6 @@ namespace mjcf
#define mjcf_ElementDerivedConstructors(Derived) \
mjcf_ElementDerivedConstructorsBase(Element, Derived)
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment