X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=service%2Fsoft-sensor-manager%2FSSMCore%2Fsrc%2FSSMInterface%2FSSMModelDefinition.h;h=2c33279878d540d7d160e890469edc635cc94469;hb=8c01dff2c5bc5496f7dc1632c498943ec6ecb015;hp=73cbe581bde80011e18f1c4a79e2e6aa000f7b49;hpb=935fdb9b67b6c10d007e652e9e2e028fd6ccfe09;p=platform%2Fupstream%2Fiotivity.git diff --git a/service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMModelDefinition.h b/service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMModelDefinition.h index 73cbe58..2c33279 100644 --- a/service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMModelDefinition.h +++ b/service/soft-sensor-manager/SSMCore/src/SSMInterface/SSMModelDefinition.h @@ -53,17 +53,20 @@ class ISSMResource ISSMResource() { location = SENSOR_LOCATION_LOCAL; + connectivityType = 0; } ISSMResource(const std::string &n, const std::string &t) : name(n), type(t) { - location = SENSOR_LOCATION_LOCAL; + location = SENSOR_LOCATION_LOCAL; + connectivityType = 0; } SENSOR_LOCATION location; std::string name; std::string type; std::string friendlyName; std::string ip; + int connectivityType; std::vector inputList; std::vector > outputProperty; };