Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
dynamic-graph-python
Commits
b5ea1954
Commit
b5ea1954
authored
Feb 20, 2018
by
Joseph Mirabel
Committed by
Guilhem Saurel
Jul 30, 2018
Browse files
Move some definition to cc file.
parent
bad756cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/signal-wrapper.cc
View file @
b5ea1954
...
...
@@ -34,6 +34,16 @@ namespace dynamicgraph {
}
}
PythonSignalContainer
::
PythonSignalContainer
(
const
std
::
string
&
name
)
:
Entity
(
name
)
{
}
void
PythonSignalContainer
::
signalRegistration
(
const
SignalArray
<
int
>&
signals
)
{
Entity
::
signalRegistration
(
signals
);
}
DYNAMICGRAPH_FACTORY_ENTITY_PLUGIN
(
PythonSignalContainer
,
"PythonSignalContainer"
);
template
<
class
T
,
class
Time
>
...
...
src/signal-wrapper.hh
View file @
b5ea1954
...
...
@@ -38,12 +38,9 @@ namespace dynamicgraph {
DYNAMIC_GRAPH_ENTITY_DECL
();
public:
PythonSignalContainer
(
const
std
::
string
&
name
)
:
Entity
(
name
)
{}
;
PythonSignalContainer
(
const
std
::
string
&
name
);
void
signalRegistration
(
const
SignalArray
<
int
>&
signals
)
{
Entity
::
signalRegistration
(
signals
);
}
void
signalRegistration
(
const
SignalArray
<
int
>&
signals
);
};
template
<
class
T
,
class
Time
>
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment