SmppConnection.h
上传用户:hkcoast
上传日期:2007-01-12
资源大小:979k
文件大小:1k
源码类别:

手机短信编程

开发平台:

Visual C++

  1. // SmppConnection.h: interface for the CSmppConnection class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SMPPCONNECTION_H__9FD3F262_D5BF_404B_AEB6_5895317DCEE4__INCLUDED_)
  5. #define AFX_SMPPCONNECTION_H__9FD3F262_D5BF_404B_AEB6_5895317DCEE4__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ServerLink.h"
  10. class SMPPLIB_DECLSPEC CSmppConnection : public CServerLink
  11. {
  12. public:
  13. CSmppConnection();
  14. virtual ~CSmppConnection();
  15. int bind(CString sysid, CString passwd, CString systype, CString addrrange);
  16. virtual int bind(CString sysid, CString passwd, CString systype, CSmppAddress &addrrange) = 0;
  17. int unbind();
  18. int enquireLink();
  19. protected:
  20. CString m_system_id;
  21. CString m_password;
  22. CString m_system_type;
  23. CSmppAddress m_address_range;
  24. };
  25. #endif // !defined(AFX_SMPPCONNECTION_H__9FD3F262_D5BF_404B_AEB6_5895317DCEE4__INCLUDED_)