mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 11:14:58 -06:00
33 lines
669 B
C++
Executable File
33 lines
669 B
C++
Executable File
// TextPairs.h
|
|
|
|
#ifndef ZIP7_INC_FM_TEXT_PAIRS_H
|
|
#define ZIP7_INC_FM_TEXT_PAIRS_H
|
|
|
|
#include "../../../Common/MyString.h"
|
|
|
|
struct CTextPair
|
|
{
|
|
UString ID;
|
|
UString Value;
|
|
};
|
|
|
|
class CPairsStorage
|
|
{
|
|
CObjectVector<CTextPair> Pairs;
|
|
|
|
int FindID(const UString &id, unsigned &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
|