--- smsdaemon/plugins/TogPlugin.h 2008/06/11 11:05:03 51 +++ smsdaemon/plugins/TogPlugin.h 2008/06/11 12:15:14 52 @@ -3,7 +3,17 @@ #include "Plugin.h" +#include +struct StationInfo +{ + StationInfo() {} + StationInfo(std::string c, std::string n) + : code(c), name(n) {} + + std::string code; + std::string name; +}; class TogPlugin : public Plugin { @@ -13,9 +23,11 @@ virtual void Execute(IGsmModem& modem, SMS& sms); std::string GetRealStationCode(std::string code, std::string& stationName); + std::string CreateStationList(); virtual ~TogPlugin() {} - +private: + std::map _stationInfo; };