Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
wolf
Merge requests
!379
Resolve "Problem::getState(structure) doesn't care about structure"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Problem::getState(structure) doesn't care about structure"
343-problem-getstate-structure-doesn-t-care-about-structure
into
devel
Overview
0
Commits
12
Pipelines
8
Changes
3
Merged
Joan Solà Ortega
requested to merge
343-problem-getstate-structure-doesn-t-care-about-structure
into
devel
5 years ago
Overview
0
Commits
12
Pipelines
8
Changes
3
Expand
Closes
#343 (closed)
Edited
5 years ago
by
Joan Solà Ortega
0
0
Merge request reports
Viewing commit
69d307ad
Prev
Next
Show latest version
3 files
+
6
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
69d307ad
WIP: Add structure to IM::getState() API
· 69d307ad
Joan Solà Ortega
authored
5 years ago
include/core/processor/is_motion.h
+
2
−
2
Options
@@ -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