Skip to content
Snippets Groups Projects
Commit c4cca621 authored by Fabian Tërnava's avatar Fabian Tërnava
Browse files

fix error in aron path

parent 1ee90110
No related branches found
No related tags found
1 merge request!332Rename ARON numeric primitive typenames
...@@ -36,6 +36,8 @@ namespace armarx::aron ...@@ -36,6 +36,8 @@ namespace armarx::aron
} }
Path::Path(const std::vector<std::string>& p) : Path::Path(const std::vector<std::string>& p) :
rootIdentifier("_ARON"),
delimeter("->"),
path(p) path(p)
{ {
} }
......
...@@ -39,7 +39,7 @@ namespace armarx::aron ...@@ -39,7 +39,7 @@ namespace armarx::aron
/// default constructor /// default constructor
Path(); Path();
/// constructor, taking a list of strings (a path) /// default constructor, taking a list of strings (a path)
Path(const std::vector<std::string>&); Path(const std::vector<std::string>&);
/// copy constructor /// copy constructor
...@@ -48,7 +48,7 @@ namespace armarx::aron ...@@ -48,7 +48,7 @@ namespace armarx::aron
/// append constructor /// append constructor
Path(const Path&, const std::vector<std::string>&); Path(const Path&, const std::vector<std::string>&);
/// comparison operator /// copy operator
Path& operator=(const armarx::aron::Path&) = default; Path& operator=(const armarx::aron::Path&) = default;
std::vector<std::string> getPath() const; std::vector<std::string> getPath() const;
......
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