Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/PluginIniFileW.h

Issue 11013110: Cleanup (Closed)
Patch Set: More beautification and addressing comments Created July 29, 2013, 12:13 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/plugin/PluginIniFile.cpp ('k') | src/plugin/PluginIniFileW.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/plugin/PluginIniFileW.h
===================================================================
deleted file mode 100644
--- a/src/plugin/PluginIniFileW.h
+++ /dev/null
@@ -1,71 +0,0 @@
-#ifndef _PLUGIN_INI_FILE_W_H_
-#define _PLUGIN_INI_FILE_W_H_
-
-#if _MSC_VER > 1000
-#pragma once
-#endif // _MSC_VER > 1000
-
-
-class CPluginChecksum;
-
-
-class CPluginIniFileW
-{
-
-public:
-
- typedef std::map<CStringW, CStringW> TSectionData;
- typedef std::set<CStringW> TSectionNames;
-
- CPluginIniFileW(const CString& filename, bool hasChecksum=false);
-
- CString GetFilePath() const;
-
- void Clear();
- bool Read();
- bool ReadString(const CStringW& memFile);
- bool Write();
- bool Exists();
-
- // methods to return the lists of section data and section names
- CPluginIniFileW::TSectionData GetSectionData(const CStringW& section) const;
-
- const CPluginIniFileW::TSectionNames& GetSectionNames() const;
-
- void SetInitialChecksumString(const CString& str);
- bool IsValidChecksum() const;
-
- // check if the section exists in the file
- bool HasSection(const CStringW& section) const;
- bool HasKey(const CStringW& section, const CStringW& key) const;
-
- // updates the key value, if key already exists, else creates a key-value pair
- bool SetValue(const CStringW& section, const CStringW& key, const CStringW& value);
- bool SetValue(const CStringW& section, const CStringW& key, int value);
-
- void UpdateSection(const CStringW& section, const CPluginIniFileW::TSectionData& data);
-
- // give the value for the specified key of a section
- CStringW GetValue(const CStringW& section, const CStringW& key) const;
-
- unsigned int GetLastError() const;
-
-private:
-
- typedef std::map<CStringW, CPluginIniFileW::TSectionData> TData;
-
- CString m_filename;
- bool m_isDirty;
- bool m_isValidChecksum;
- bool m_hasChecksum;
- unsigned int m_lastError;
-
- CString m_checksumInit;
- CPluginIniFileW::TData m_data;
- CPluginIniFileW::TSectionNames m_sectionNames;
-
- std::auto_ptr<CPluginChecksum> m_checksum;
-};
-
-
-#endif // _PLUGIN_INI_FILE_W_H_
« no previous file with comments | « src/plugin/PluginIniFile.cpp ('k') | src/plugin/PluginIniFileW.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld