IniFile.h
上传用户:yffx2008
上传日期:2014-10-12
资源大小:12414k
文件大小:2k
源码类别:

交通/航空行业

开发平台:

Visual C++

  1. // IniFile.h: interface for the CIniFile class.
  2. // Written by: Gao Tong
  3. // Email: martianfighter@yahoo.com.cn
  4. // You may use this class/code as you wish in your programs.  Feel free to distribute it, and
  5. // email suggested changes to me.
  6. //////////////////////////////////////////////////////////////////////
  7. #if !defined(AFX_INIFILE_H__D6BE0D97_13A8_11D4_A5D2_002078B03530__INCLUDED_)
  8. #define AFX_INIFILE_H__D6BE0D97_13A8_11D4_A5D2_002078B03530__INCLUDED_
  9. #if _MSC_VER > 1000
  10. #pragma once
  11. #endif // _MSC_VER > 1000
  12. #include <afxtempl.h>
  13. #include <iostream.h>
  14. class CIniFile  
  15. {
  16. //all private variables
  17. private:
  18. private:
  19. //stores path of ini file to read/write
  20. CString FilePath;
  21. //stores name of ini file to read/write
  22. CString FileName;
  23. //get value(CString) from str
  24. CString GetValueString(CString str);
  25. //find Section in ini file
  26. BOOL FindSection(CString Section);
  27. //ini file
  28. CStdioFile IniFile;
  29. //public variables
  30. public:
  31. //public functions
  32. public:
  33. //read value of int from ini file
  34. BOOL GetItemInt(CString Section,CString Item,int & Value);
  35. //read value of CString from ini file
  36. BOOL GetItemString(CString Section,CString Item,CString & Value);
  37. //write any string to ini file,"n"
  38. BOOL WriteString(CString str);
  39. //write Section to ini file
  40. BOOL WriteSection(CString Section);
  41. //write Item and value of int to ini file
  42. BOOL WriteItemInt(CString Item,int Value);
  43. //write Item and value of CString to ini file
  44. BOOL WriteItemString(CString Item,CString Value);
  45. //open ini file for read
  46. BOOL OpenIniFileForRead(void);
  47. //open ini file for write
  48. BOOL OpenIniFileForWrite(void);
  49. //default constructor
  50. CIniFile();
  51. //sets name of ini file to read and write from
  52. void SetName(CString Name);
  53. //sets path of ini file to read and write from
  54. void SetPath(CString Path);
  55. //close ini file
  56. virtual void CloseIniFile(void);
  57. //default destructor
  58. virtual ~CIniFile();
  59. };
  60. #endif // !defined(AFX_INIFILE_H__D6BE0D97_13A8_11D4_A5D2_002078B03530__INCLUDED_)