Subversion Repositories spk

Rev

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

Rev 46 Rev 48
Line 6... Line 6...
6
namespace SPK {
6
namespace SPK {
7
namespace Package {
7
namespace Package {
8
 
8
 
9
class SPKEXPORT CInstallText
9
class SPKEXPORT CInstallText
10
{
10
{
11
public:
11
private:
12
	typedef struct SInstallText {
12
	typedef struct SInstallText {
13
		int				iLanguage;
13
		int				iLanguage;
14
		Utils::String	sBefore;
14
		Utils::String	sBefore;
15
		Utils::String	sAfter;
15
		Utils::String	sAfter;
16
	} SInstallText;
16
	} SInstallText;
-
 
17
 
-
 
18
public:
-
 
19
	typedef CLinkList<SInstallText> TextList;
-
 
20
	typedef CListNode<SInstallText>* TextNode;
17
 
21
 
18
	friend class CInstallText;
22
	friend class CInstallText;
19
 
23
 
20
private:
24
private:
21
	CLinkList<SInstallText>	_lTexts;
25
	TextList _lTexts;
22
 
26
 
23
public:
27
public:
24
	CInstallText(void);
28
	CInstallText(void);
25
	virtual ~CInstallText(void);
29
	virtual ~CInstallText(void);
26
 
30