added parking and environment properties
[profile/ivi/automotive-message-broker.git] / plugins / dbus / runningstatus.h
similarity index 86%
rename from plugins/dbus/properties.h
rename to plugins/dbus/runningstatus.h
index 6ea677c..660b110 100644 (file)
@@ -49,20 +49,6 @@ public:
 
 };
 
-class TirePressureProperty: public DBusSink
-{
-public:
-       TirePressureProperty(AbstractRoutingEngine* re, GDBusConnection* connection)
-               :DBusSink("org.automotive.tirePressure","/org/automotive/maintainance/tirePressure", re, connection, map<string, string>())
-       {
-               wantProperty<double>(VehicleProperty::TirePressureLeftFront,"LeftFront", "d", AbstractProperty::Read);
-               wantProperty<double>(VehicleProperty::TirePressureRightFront,"RightFront", "d", AbstractProperty::Read);
-               wantProperty<double>(VehicleProperty::TirePressureLeftRear,"LeftRear", "d", AbstractProperty::Read);
-               wantProperty<double>(VehicleProperty::TirePressureRightRear,"RightRear", "d", AbstractProperty::Read);
-               supportedChanged(re->supported());
-       }
-};
-
 class VehiclePowerModeProperty: public DBusSink
 {
 public:
@@ -117,20 +103,6 @@ public:
        }
 };
 
-class TireTemperatureProperty: public DBusSink
-{
-public:
-       TireTemperatureProperty(AbstractRoutingEngine* re, GDBusConnection* connection)
-               :DBusSink("org.automotive.tireTemperature","/org/automotive/maintainance/tireTemperature", re, connection, map<string, string>())
-       {
-               wantProperty<double>(VehicleProperty::TireTemperatureLeftFront,"LeftFront", "d", AbstractProperty::Read);
-               wantProperty<double>(VehicleProperty::TireTemperatureRightFront,"RightFront", "d", AbstractProperty::Read);
-               wantProperty<double>(VehicleProperty::TireTemperatureLeftRear,"LeftRear", "d", AbstractProperty::Read);
-               wantProperty<double>(VehicleProperty::TireTemperatureRightRear,"RightRear", "d", AbstractProperty::Read);
-               supportedChanged(re->supported());
-       }
-};
-
 
 class CruiseControlProperty: public DBusSink
 {