Skip to content
Snippets Groups Projects
Commit 8ac26f93 authored by Nicolas Mansard's avatar Nicolas Mansard
Browse files

Modify the policy for plugin a sigptr in input.

parent e6aaab39
No related branches found
No related tags found
No related merge requests found
...@@ -107,6 +107,7 @@ namespace dynamicgraph ...@@ -107,6 +107,7 @@ namespace dynamicgraph
{ setConstantDefault( accessCopy () ); } { setConstantDefault( accessCopy () ); }
inline void unsetConstantDefault (){ modeNoThrow = false; } inline void unsetConstantDefault (){ modeNoThrow = false; }
virtual void checkCompatibility();
public: /* --- INHERITANCE --- */ public: /* --- INHERITANCE --- */
......
...@@ -135,6 +135,17 @@ namespace dynamicgraph ...@@ -135,6 +135,17 @@ namespace dynamicgraph
dgTDEBUGOUT(5); dgTDEBUGOUT(5);
} }
template< class T,class Time >
void SignalPtr<T,Time>::
checkCompatibility ()
{
if( isPluged()&&(!autoref ()) )
{ getPtr()->checkCompatibility(); }
else if( isAbstractPluged()&&(!autoref ()) )
{ abstractTransmitter->checkCompatibility(); }
else Signal<T,Time>::checkCompatibility();
}
template< class T,class Time > template< class T,class Time >
bool SignalPtr<T,Time>:: bool SignalPtr<T,Time>::
needUpdate( const Time& t ) const needUpdate( const Time& t ) const
......
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