Skip to content
Snippets Groups Projects
Commit 74d7368d authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Set default values for enumes (otherwise there will be marshaling errors if they are not set

parent 16ad7f00
No related branches found
No related tags found
No related merge requests found
......@@ -59,8 +59,8 @@ module armarx
};
class GraspCandidateExecutionHints
{
ApertureType preshape;
ApproachType approach;
ApertureType preshape = AnyAperture;
ApproachType approach = AnyApproach;
string graspTrajectoryName;
};
class GraspCandidateReachabilityInfo
......@@ -86,7 +86,7 @@ module armarx
float graspSuccessProbability;
ObjectTypeEnum objectType;
ObjectTypeEnum objectType = AnyObject;
int groupNr = -1; // used to match candidates that belog together, e.g. from the same object or point cloud segment
string providerName;
......
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