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