chore: initial commit (extracted from Launchers monorepo)
Plugin: ns7zip v2.0.0 Architectures: x86-ansi, x86-unicode, amd64-unicode License: LGPL-2.1-or-later
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user