⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gsm_sie_me.h

📁 对各种手机进行编程的工具包源码gsmlib 1.9版本。
💻 H
字号:
// *************************************************************************// * GSM TA/ME library// *// * File:    gsm_sie_me.h// *// * Purpose: Mobile Equipment/Terminal Adapter and SMS functions// *          (According to "AT command set for S45 Siemens mobile phones"// *           v1.8, 26. July 2001 - Common AT prefix is "^S")// *// * Author:  Christian W. Zuckschwerdt  <zany@triq.net>// *// * Created: 2001-12-15// *************************************************************************#ifndef GSM_SIE_ME_H#define GSM_SIE_ME_H#include <gsmlib/gsm_error.h>#include <gsmlib/gsm_at.h>#include <string>#include <vector>using namespace std;namespace gsmlib{  // *** Siemens mobile phone binary objects (bitmap, midi, vcal, vcard)  struct BinaryObject  {    string _type;               // Object type    int _subtype;               // Object subtype (storage number)    unsigned char *_data;       // Object binary data    int _size;                  // Object data size  };  // *** this class allows extended access to Siemens moblie phones  class SieMe : public MeTa  {  private:    // init ME/TA to sensible defaults    void init() throw(GsmException);  public:    // initialize a new MeTa object given the port    SieMe(Ref<Port> port) throw(GsmException);    // get the current phonebook in the Siemens ME    vector<string> getSupportedPhonebooks() throw(GsmException);// (AT^SPBS=?)    // get the current phonebook in the Siemens ME    string getCurrentPhonebook() throw(GsmException); // (AT^SPBS?)    // set the current phonebook in the Siemens ME    // remember the last phonebook set for optimisation    void setPhonebook(string phonebookName) throw(GsmException); // (AT^SPBS=)    // Siemens get supported signal tones    IntRange getSupportedSignalTones() throw(GsmException); // (AT^SPST=?)    // Siemens set ringing tone    void playSignalTone(int tone) throw(GsmException); // (AT^SRTC=x,1)    // Siemens set ringing tone    void stopSignalTone(int tone) throw(GsmException); // (AT^SRTC=x,0)    // Siemens get ringing tone    IntRange getSupportedRingingTones() throw(GsmException); // (AT^SRTC=?)    // Siemens get ringing tone    int getCurrentRingingTone() throw(GsmException); // (AT^SRTC?)    // Siemens set ringing tone    void setRingingTone(int tone, int volume) throw(GsmException);// (AT^SRTC=)    // Siemens set ringing tone on    void playRingingTone() throw(GsmException);    // Siemens set ringing tone of    void stopRingingTone() throw(GsmException);    // Siemens toggle ringing tone    void toggleRingingTone() throw(GsmException); // (AT^SRTC)    // Siemens get supported binary read    vector<ParameterRange> getSupportedBinaryReads() throw(GsmException);    // Siemens get supported binary write    vector<ParameterRange> getSupportedBinaryWrites() throw(GsmException);    // Siemens Binary Read    BinaryObject getBinary(string type, int subtype) throw(GsmException);    // Siemens Binary Write    void setBinary(string type, int subtype, BinaryObject obj)      throw(GsmException);  };};#endif // GSM_ME_TA_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -