Changes from std::string to const char* in PropertyInfo (#633)

This commit is contained in:
Alexander Bock
2018-06-26 11:23:45 -04:00
committed by GitHub
parent c9833197ff
commit 1818304d19
3 changed files with 135 additions and 138 deletions
+3 -3
View File
@@ -77,11 +77,11 @@ public:
*/
struct PropertyInfo {
/// The unique identifier that is part of the fully qualified URI of this Property
std::string identifier;
const char* identifier;
/// The name that is displayed in the user interface
std::string guiName;
const char* guiName;
/// The user facing description of this Property
std::string description;
const char* description;
/// Determins the visibility of this Property in the user interface
Visibility visibility = Visibility::All;
};