Skip to content
Snippets Groups Projects
Commit 9308145b authored by Olivier Stasse's avatar Olivier Stasse
Browse files

Fix style.

parent 77bd7357
No related branches found
No related tags found
No related merge requests found
......@@ -15,11 +15,13 @@ namespace dynamicgraph {
tick as reference.
It works this way. For a given SignalTimeDependent S,
- the user manually adds dependent signals through the use of the SignalTimeDependent::addDependency function.
- On access (calling the signal S SignalTimeDependent::operator()(const Time&) or
SignalTimeDependent::access(const Time&) function), if the dependent signals are not
up-to-date, i.e. if their [last update] time is less than the current time,
their value will be SignalTimeDependent::access ()'ed to bring them up-to-date.
- the user manually adds dependent signals through the use of the
SignalTimeDependent::addDependency function.
- On access (calling the signal S SignalTimeDependent::operator()(const Time&)
or SignalTimeDependent::access(const Time&) function), if the dependent
signals are not up-to-date, i.e. if their [last update] time is less than the
current time, their value will be SignalTimeDependent::access ()'ed to bring
them up-to-date.
Thus, the value of dependent signals can be accessed \b quickly and
\b repeatedly through the Signal::accessCopy () function.
......
......@@ -82,7 +82,7 @@ DefaultCastRegisterer<bool> bool_reg;
DefaultCastRegisterer<dynamicgraph::Vector> vectorCastRegisterer;
DefaultCastRegisterer<dynamicgraph::Matrix> matrixCastRegisterer;
DefaultCastRegisterer<boost::posix_time::ptime> ptimeCastRegisterer;
DefaultCastRegisterer <std::string> stringCastRegisterer;
DefaultCastRegisterer<std::string> stringCastRegisterer;
} // end of anonymous namespace.
} // namespace dynamicgraph
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