Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
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
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Merge requests
!178
Draft: Make RobotStateMemory ready
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Draft: Make RobotStateMemory ready
armem/robot-state-memory
into
master
Overview
1
Commits
48
Pipelines
0
Changes
10
Merged
Rainer Kartmann
requested to merge
armem/robot-state-memory
into
master
3 years ago
Overview
1
Commits
48
Pipelines
0
Changes
10
Expand
Goal:
Make stable (especially race conditions)
Improve runtime
Add profiling/monitoring
Refactor code
Add missing interfaces
0
0
Merge request reports
Viewing commit
13731bc4
Prev
Next
Show latest version
10 files
+
44
−
16
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
13731bc4
Move code and includes to .cpp, add virtual dtors
· 13731bc4
Rainer Kartmann
authored
3 years ago
source/RobotAPI/libraries/armem/server/query_proc/diskmemory/EntityQueryProcessor.h
+
3
−
0
Options
@@ -19,11 +19,14 @@ namespace armarx::armem::d_ltm::query_proc
using
Base
=
BaseQueryProcessor
<
d_ltm
::
Entity
,
armem
::
query
::
data
::
EntityQuery
>
;
public:
EntityQueryProcessor
()
:
Base
()
{}
private
:
void
addResultSnapshot
(
d_ltm
::
Entity
&
result
,
d_ltm
::
Entity
::
ContainerT
::
const_iterator
it
)
const
override
{
addResultSnapshot
(
result
,
it
->
second
);
Loading