mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 04:11:37 -06:00
Normalize all the line endings
This commit is contained in:
@@ -1,32 +1,32 @@
|
||||
// TextPairs.h
|
||||
|
||||
#ifndef __FM_TEXT_PAIRS_H
|
||||
#define __FM_TEXT_PAIRS_H
|
||||
|
||||
#include "../../../Common/MyString.h"
|
||||
|
||||
struct CTextPair
|
||||
{
|
||||
UString ID;
|
||||
UString Value;
|
||||
};
|
||||
|
||||
class CPairsStorage
|
||||
{
|
||||
CObjectVector<CTextPair> Pairs;
|
||||
|
||||
int FindID(const UString &id, int &insertPos) const;
|
||||
int FindID(const UString &id) const;
|
||||
void Sort();
|
||||
public:
|
||||
void Clear() { Pairs.Clear(); }
|
||||
bool ReadFromString(const UString &text);
|
||||
void SaveToString(UString &text) const;
|
||||
|
||||
bool GetValue(const UString &id, UString &value) const;
|
||||
UString GetValue(const UString &id) const;
|
||||
void AddPair(const CTextPair &pair);
|
||||
void DeletePair(const UString &id);
|
||||
};
|
||||
|
||||
#endif
|
||||
// TextPairs.h
|
||||
|
||||
#ifndef __FM_TEXT_PAIRS_H
|
||||
#define __FM_TEXT_PAIRS_H
|
||||
|
||||
#include "../../../Common/MyString.h"
|
||||
|
||||
struct CTextPair
|
||||
{
|
||||
UString ID;
|
||||
UString Value;
|
||||
};
|
||||
|
||||
class CPairsStorage
|
||||
{
|
||||
CObjectVector<CTextPair> Pairs;
|
||||
|
||||
int FindID(const UString &id, int &insertPos) const;
|
||||
int FindID(const UString &id) const;
|
||||
void Sort();
|
||||
public:
|
||||
void Clear() { Pairs.Clear(); }
|
||||
bool ReadFromString(const UString &text);
|
||||
void SaveToString(UString &text) const;
|
||||
|
||||
bool GetValue(const UString &id, UString &value) const;
|
||||
UString GetValue(const UString &id) const;
|
||||
void AddPair(const CTextPair &pair);
|
||||
void DeletePair(const UString &id);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user