Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3c555ec0f4706be7ee2824ea2d68da14b7052109 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * RTObject.h
 *
 *  Created on: 22.08.2012
 *      Author: karlitsc
 */

#ifndef RTOBJECT_H_
#define RTOBJECT_H_

#include <string>
#include "common/messaging/IRTObject.h"

namespace etRuntime {

class RTObject : public IRTObject{
public:
	RTObject();
	RTObject(IRTObject* parent, std::string name);
	RTObject(const RTObject & right);
	RTObject & operator = (RTObject right);

	virtual ~RTObject();

	IRTObject* getParent() { return m_parent; };
	std::string getInstancePath();
	std::string getInstancePathName();

private:
	IRTObject* m_parent;
	std::string m_name;

};

} /* namespace etRuntime */
#endif /* RTOBJECT_H_ */

Back to the top