TDME2 1.9.121
BaseProperties.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
10
11using std::map;
12using std::string;
13using std::vector;
14
16
17/**
18 * Base properties
19 * @author Andreas Drewke
20 * @version $Id$
21 */
23{
24private:
25 map<string, BaseProperty*> propertiesByName;
26 vector<BaseProperty*> properties;
27
28protected:
29 string name;
31
32public:
33 /**
34 * Public constructor
35 * @param name name
36 * @param description description
37 */
38 BaseProperties(const string& name, const string& description);
39
40 /**
41 * Destructor
42 */
43 virtual ~BaseProperties();
44
45 /**
46 * @return name
47 */
48 inline const string& getName() {
49 return name;
50 }
51
52 /**
53 * Set up name
54 * @param name name
55 */
56 inline void setName(const string& name) {
57 this->name = name;
58 }
59
60 /**
61 * @return description
62 */
63 inline const string& getDescription() {
64 return description;
65 }
66
67 /**
68 * Set up description
69 * @param description description
70 */
71 inline void setDescription(const string& description) {
72 this->description = description;
73 }
74
75 /**
76 * Clears properties
77 */
78 void clearProperties();
79
80 /**
81 * Retrieve property by name
82 * @param name name
83 * @return property or null
84 */
85 BaseProperty* getProperty(const string& name);
86
87 /**
88 * @return property count
89 */
90 inline int getPropertyCount() {
91 return properties.size();
92 }
93
94 /**
95 * Get property index
96 * @param name name
97 * @return index or -1 if not found
98 */
99 int getPropertyIndex(const string& name);
100
101 /**
102 * Get property by index
103 * @param idx idx
104 * @return property or null
105 */
107 return idx >= 0 && idx < properties.size()?properties[idx]:nullptr;
108 }
109
110 /**
111 * Add a property
112 * @param name name
113 * @param value value
114 */
115 bool addProperty(const string& name, const string& value);
116
117 /**
118 * Rename a property
119 * @param oldName old name
120 * @param name name
121 * @return success
122 */
123 bool renameProperty(const string& oldName, const string& name);
124
125 /**
126 * Update a property
127 * @param oldName old name
128 * @param name name
129 * @param value value
130 * @return success
131 */
132 bool updateProperty(const string& oldName, const string& name, const string& value);
133
134 /**
135 * Removes a property
136 * @param name property name
137 */
138 bool removeProperty(const string& name);
139
140};
BaseProperty * getPropertyByIndex(int idx)
Get property by index.
void clearProperties()
Clears properties.
bool updateProperty(const string &oldName, const string &name, const string &value)
Update a property.
vector< BaseProperty * > properties
void setName(const string &name)
Set up name.
map< string, BaseProperty * > propertiesByName
BaseProperties(const string &name, const string &description)
Public constructor.
BaseProperty * getProperty(const string &name)
Retrieve property by name.
int getPropertyIndex(const string &name)
Get property index.
bool addProperty(const string &name, const string &value)
Add a property.
bool removeProperty(const string &name)
Removes a property.
bool renameProperty(const string &oldName, const string &name)
Rename a property.
void setDescription(const string &description)
Set up description.
Base property model class.
Definition: BaseProperty.h:16