Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 792ad6dfeabc9da0961c8129f909c55e0008ffc3 (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
/*
 * Address.h
 *
 *  Created on: 06.06.2012
 *      Author: karlitsc
 */

#ifndef ADDRESS_H_
#define ADDRESS_H_

namespace etRuntime {

class Address {
public:
	Address(int nodeID,int threadID, int objectID)
	: m_nodeID(nodeID), m_threadID(threadID), m_objectID(objectID) {};
	~Address();

	int m_nodeID;
	int m_threadID;
	int m_objectID;

private:
	Address();
};

} /* namespace etRuntime */
#endif /* ADDRESS_H_ */

Back to the top