Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
dynamic-graph
Commits
3594c7ad
Commit
3594c7ad
authored
Jul 09, 2019
by
Bergé
Browse files
Useless function find, maybe delete?
Signed-off-by:
Bergé
<
corentin.berge@outlook.fr
>
parent
425ee7c0
Changes
1
Show whitespace changes
Inline
Side-by-side
include/dynamic-graph/signal-ptr.h
View file @
3594c7ad
...
...
@@ -62,9 +62,10 @@ namespace dynamicgraph
const
SignalBase
<
Time
>*
getAbstractPtr
()
const
;
// throw
virtual
void
plug
(
SignalBase
<
Time
>*
ref
);
virtual
void
unplug
()
{
plug
(
NULL
);
}
virtual
bool
isPluged
()
const
DYNAMIC_GRAPH_DEPRECATED
{
//Useless function, didn't find any use of this one
/*virtual bool isPluged () const DYNAMIC_GRAPH_DEPRECATED {
return isPlugged ();
}
}
*/
virtual
bool
isPlugged
()
const
{
return
(
NULL
!=
signalPtr
);
}
virtual
SignalBase
<
Time
>*
getPluged
()
const
{
return
signalPtr
;
}
virtual
bool
isAbstractPluged
()
const
;
...
...
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