mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 14:11:40 -06:00
Initialer Commit
This commit is contained in:
32
CPP/7zip/UI/FileManager/TextPairs.h
Normal file
32
CPP/7zip/UI/FileManager/TextPairs.h
Normal file
@@ -0,0 +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
|
||||
Reference in New Issue
Block a user