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
Commits
1d0a5354
Commit
1d0a5354
authored
9 months ago
by
Julian Tusch
Browse files
Options
Downloads
Patches
Plain Diff
added skill for testing
parent
247c50ad
No related branches found
Branches containing commit
No related tags found
3 merge requests
!463
145-fluxio-results-and-errors-refactor
,
!452
Resolve "Fluxio results and errors"
,
!449
Fluxio preliminary release
Pipeline
#19753
passed
9 months ago
Stage: build-and-test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/libraries/skills/manager/SkillManagerComponentPluginUser.cpp
+17
-0
17 additions, 0 deletions
...raries/skills/manager/SkillManagerComponentPluginUser.cpp
with
17 additions
and
0 deletions
source/RobotAPI/libraries/skills/manager/SkillManagerComponentPluginUser.cpp
+
17
−
0
View file @
1d0a5354
...
...
@@ -11,6 +11,7 @@
#include
<ArmarXCore/core/exceptions/LocalException.h>
#include
<ArmarXCore/core/logging/Logging.h>
#include
<ArmarXCore/interface/core/time.h>
#include
"RobotAPI/libraries/skills/core/FluxioProfile.h"
#include
"RobotAPI/libraries/skills/core/FluxioProvider.h"
...
...
@@ -247,6 +248,22 @@ namespace armarx
ret
.
push_back
(
skill
.
value
());
}
ret
.
push_back
(
skills
::
manager
::
dto
::
FluxioSkill
{
.
id
=
"SkillNotFound"
,
.
name
=
"SkillNotFound"
,
.
description
=
"This skill cannot be found and will throw an error."
,
.
timeout
=
armarx
::
core
::
time
::
dto
::
Duration
(
-
1
),
.
lastChanged
=
""
,
.
executable
=
false
,
.
native
=
true
,
.
skillProviderId
=
{.
id
=
"test provider"
,
.
hint
=
"test provider"
},
.
parameters
=
{},
.
nodesHasValue
=
false
,
.
nodes
=
{},
.
edgesHasValue
=
false
,
.
edges
=
{},
});
return
ret
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment