📄 atphone.h
字号:
/*************************************************************************** * Copyright (C) 2004 by Igor Vlassov * * iev@iev.cor.ru * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/#ifndef ATPHONE_H#define ATPHONE_H/**@author Igor Vlassov*/// ATPhone.h: interface for the CATPhone class.////////////////////////////////////////////////////////////////////////#include <sys/time.h>#include <time.h>#include <errno.h>#include <stdio.h>#include <signal.h>#include <fcntl.h>#include <termio.h>#include <stdlib.h>#include <unistd.h>#include <string.h>#include <qstring.h>#include "log.h"class CATPhone {protected: enum ERetCodes {GOOD,BAD,TIMEOUT};public: CATPhone(); virtual ~CATPhone(); int Init(char *sCom, char *speed=NULL); void InitLogs(CLog *_log, CLog *_sms = NULL); void Exit(int sig=0); ERetCodes Wait(char *good, char *bad, int timeout); ERetCodes strWait(char *good, char *bad, int timeout); // Is modem GSM-modem? bool isGSMmodem(); // Set text mode bool SetSMStextMode(); // Store SMS into phone memory int StoreSMS2mem(const char *sPhone, const char *sText); // Send SMS from memory bool SendSMSFromMem(int cell=0); // Deleting SMS from memory bool DelSMSFromMem(int cell=0); bool ListSMS(); void ParceSMSList();private: FILE *fdr, *fdw; int fd; struct termio term_save, stdin_save; char buffer[256]; QString strBuf; char CtrlZ[2];// BYTE cr, esc, CtrlZ; int currMemCell; CLog *pLog, *pSms;// CTime time;};#endif // ATPHONE_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -