Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenFlipper-Free
OpenFlipper-Free
Commits
77b849f1
Commit
77b849f1
authored
Dec 01, 2015
by
Jan Möbius
Browse files
Moved seperatornode implementation to cc file
parent
a69a4009
Pipeline
#209
canceled with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
ACG/Scenegraph/SeparatorNode.cc
View file @
77b849f1
...
...
@@ -68,6 +68,17 @@ namespace SceneGraph {
//== IMPLEMENTATION ==========================================================
/// Constructor.
SeparatorNode
::
SeparatorNode
(
BaseNode
*
_parent
=
0
,
const
std
::
string
&
_name
)
:
BaseNode
(
_parent
,
_name
)
{}
/// Destructor.
SeparatorNode
::~
SeparatorNode
()
{}
//----------------------------------------------------------------------------
//=============================================================================
...
...
ACG/Scenegraph/SeparatorNode.hh
View file @
77b849f1
...
...
@@ -88,14 +88,11 @@ class ACGDLLEXPORT SeparatorNode : public BaseNode
public:
/// Constructor.
SeparatorNode
(
BaseNode
*
_parent
=
0
,
const
std
::
string
&
_name
=
"<separator>"
)
:
BaseNode
(
_parent
,
_name
)
{}
SeparatorNode
(
BaseNode
*
_parent
=
0
,
const
std
::
string
&
_name
=
"<separator>"
);
/// Destructor.
virtual
~
SeparatorNode
()
{}
virtual
~
SeparatorNode
()
ACG_CLASSNAME
(
SeparatorNode
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment