blob: 2263a4425096cf5880304c8ce4ae5e7f81381882 [file] [log] [blame]
// Common/TextConfig.h
#ifndef ZIP7_INC_COMMON_TEXT_CONFIG_H
#define ZIP7_INC_COMMON_TEXT_CONFIG_H
#include "MyString.h"
struct CTextConfigPair
{
UString ID;
UString String;
};
bool GetTextConfig(const AString &text, CObjectVector<CTextConfigPair> &pairs);
int FindTextConfigItem(const CObjectVector<CTextConfigPair> &pairs, const char *id) throw();
UString GetTextConfigValue(const CObjectVector<CTextConfigPair> &pairs, const char *id);
#endif