Skip to content
Snippets Groups Projects

Resolve "Problem::getState(structure) doesn't care about structure"

3 files
+ 6
6
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -26,8 +26,8 @@ class IsMotion
// Queries to the processor:
virtual TimeStamp getTimeStamp() const = 0;
virtual VectorComposite getState() const = 0;
virtual VectorComposite getState(const TimeStamp& _ts) const = 0;
virtual VectorComposite getState(const StateStructure& _structure = "") const = 0;
virtual VectorComposite getState(const TimeStamp& _ts, const StateStructure& _structure = "") const = 0;
std::string getStateStructure(){return state_structure_;};
void setStateStructure(std::string _state_structure){state_structure_ = _state_structure;};
Loading