TDME2 1.9.121
BaseProperty.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
10/**
11 * Base property model class
12 * @author Andreas Drewke
13 * @version $Id$
14 */
16{
17private:
18 string name;
19 string value;
20
21public:
22 /**
23 * Constructor
24 * @param name name
25 * @param value value
26 */
27 inline BaseProperty(const string& name, const string& value): name(name), value(value) {}
28
29 /**
30 * Destructor
31 */
33
34 /**
35 * @return name
36 */
37 inline const string& getName() {
38 return name;
39 }
40
41 /**
42 * Set up name
43 * @param name name
44 */
45 inline void setName(const string& name) {
46 this->name = name;
47 }
48
49 /**
50 * @return value
51 */
52 inline const string& getValue() {
53 return value;
54 }
55
56 /**
57 * Set up value
58 * @param value value
59 */
60 inline void setValue(const string& value) {
61 this->value = value;
62 }
63
64 /**
65 * Clones this property model entity
66 */
67 inline BaseProperty* clone() {
68 return new BaseProperty(name, value);
69 }
70
71};
Base property model class.
Definition: BaseProperty.h:16
void setValue(const string &value)
Set up value.
Definition: BaseProperty.h:60
void setName(const string &name)
Set up name.
Definition: BaseProperty.h:45
BaseProperty(const string &name, const string &value)
Constructor.
Definition: BaseProperty.h:27
BaseProperty * clone()
Clones this property model entity.
Definition: BaseProperty.h:67