Update Resource Broker Initial Version
[platform/upstream/iotivity.git] / service / basis / resourceBroker / include / PrimitiveResource.h
1 /*
2  * PrimitiveResource.h
3  *
4  *  Created on: May 20, 2015
5  *      Author: root
6  */
7
8 #ifndef PRIMITIVERESOURCE_H_
9 #define PRIMITIVERESOURCE_H_
10
11 class PrimitiveResource {
12 public:
13     PrimitiveResource();
14     PrimitiveResource(std::string _Uri, std::string _Address):Uri(_Uri), Address(_Address){}
15     ~PrimitiveResource();
16
17     const std::string getUri();
18     const std::string getAddress();
19
20     const std::string Uri;
21     const std::string Address;
22 };
23
24 #endif /* PRIMITIVERESOURCE_H_ */