#ifndef MyGSM_h #define MyGSM_h #include class MyGSM { public: MyGSM(int pin); void initShield(); void enterPin(); void send_AT_cmd(const char *at_cmd, char *at_rep); bool sortRecv(char *buff, char *string); char cutRecv(char *buf, char *strBegin, char *strEnd); bool flagOn; private: int _pin; }; #endif