#ifndef __o2uk_sms #define __o2uk_sms #include #include "generic_sms.h" #include "config.h" class O2ukSMS : public GenericSMS { std::string sendmail_path, email; protected: virtual bool Send(const std::string &phone_no, const std::string &message); public: O2ukSMS(Config &config); }; #endif