Skip to content
Snippets Groups Projects
Commit b5ea1954 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Guilhem Saurel
Browse files

Move some definition to cc file.

parent bad756cf
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment