#ifndef __SENSORS_H__
#define __SENSORS_H__
-#include <string>
#include <map>
#include "stg/users.h"
#include "stg/tariffs.h"
#include "stg/user_property.h"
-#include "asn1/ObjectSyntax.h"
+#include "stg/ObjectSyntax.h"
#include "value2os.h"
+#include "types.h"
class Sensor {
public:
virtual bool GetValue(ObjectSyntax_t * objectSyntax) const = 0;
};
-typedef std::map<std::string, Sensor *> Sensors;
+typedef std::map<OID, Sensor *> Sensors;
class TableSensor {
public: