Skip to content
Snippets Groups Projects
Commit 630ef927 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Merge branch 'master' into names

parents 9f9b3902 d6e17e3d
No related branches found
No related tags found
1 merge request!402Add Names to Locations
Pipeline #16070 passed
This commit is part of merge request !402. Comments created here will be created in the context of that merge request.
......@@ -2,6 +2,17 @@
namespace armarx::armem::obj::clazz
{
ClassWriter::ClassWriter(const std::string& p) :
providerName(p)
{
}
void ClassWriter::setProviderName(const std::string& pName)
{
this->providerName = pName;
}
bool
ClassWriter::commitObjectClass(const armarx::armem::clazz::ObjectClass& c,
const armarx::core::time::DateTime& referenceTime)
......
......@@ -33,7 +33,10 @@ namespace armarx::armem::obj::clazz
class ClassWriter : public armem::client::util::SimpleWriterBase
{
public:
ClassWriter(const std::string& p) : providerName(p){};
ClassWriter() = default;
ClassWriter(const std::string& p);
void setProviderName(const std::string& pName);
bool commitObjectClass(const armarx::armem::clazz::ObjectClass& c,
const armarx::core::time::DateTime& referenceTime);
......@@ -43,7 +46,7 @@ namespace armarx::armem::obj::clazz
Properties defaultProperties() const final;
private:
const std::string providerName;
std::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