Subversion Repositories spk

Rev

Rev 35 | Rev 94 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35 Rev 84
Line 5... Line 5...
5
 
5
 
6
namespace SPK {
6
namespace SPK {
7
class CTextDB
7
class CTextDB
8
{
8
{
9
public:
9
public:
10
	typedef std::map<std::string, std::string> TextList;
10
	typedef std::map<Utils::String, Utils::String> TextList;
11
	typedef std::map<std::string, std::string>::iterator TextListItr;
11
	typedef std::map<Utils::String, Utils::String>::iterator TextListItr;
12
 
12
 
13
private:
13
private:
14
	int			 m_iLang;
14
	int			 m_iLang;
15
	int			 m_iInPage;
15
	int			 m_iInPage;
16
	TextList	*m_pTexts;
16
	TextList	*m_pTexts;