winprofile.h
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *   This program is free software; you can redistribute it and/or modify  *
  4.  *   it under the terms of the GNU General Public License as published by  *
  5.  *   the Free Software Foundation; either version 2 of the License, or     *
  6.  *   (at your option) any later version.                                   *
  7.  *                                                                         *
  8.  *   copyright            : (C) 2002 by Zhang Yong                         *
  9.  *   email                : z-yong163@163.com                              *
  10.  ***************************************************************************/
  11. #include "icqprofile.h"
  12. class WinProfile : public IcqProfile {
  13. public:
  14. virtual void writeBool(const char *key, bool b);
  15. virtual void writeString(const char *key, const char *val);
  16. virtual void writeInt(const char *key, int val);
  17. virtual void writePassword(const char *key, const char *passwd);
  18. virtual bool readBool(const char *key);
  19. virtual void readString(const char *key, string &val);
  20. virtual int readInt(const char *key);
  21. virtual void readPassword(const char *key, string &passwd);
  22. CString fileName;
  23. CString sectionName;
  24. };