Skip to content
Snippets Groups Projects
Commit 812f59a3 authored by Fabian Reister's avatar Fabian Reister
Browse files

articulated object writeR: required provider name

parent 2c157a19
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ namespace armarx::armem::articulated_object
def->optional(properties.coreClassSegmentName,
prefix + "CoreSegment",
"Name of the memory core segment to use for object classes.");
def->optional(properties.providerName, prefix + "ProviderName");
def->required(properties.providerName, prefix + "ProviderName", "Name of this provider");
}
void Writer::connect()
......
......@@ -70,7 +70,7 @@ namespace armarx::armem::articulated_object
std::string memoryName = "Object";
std::string coreInstanceSegmentName = "ArticulatedObjectInstance";
std::string coreClassSegmentName = "ArticulatedObjectClass";
std::string providerName = "ArmarXObjects";
std::string providerName;
bool allowClassCreation = false;
} properties;
......
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