Subversion Repositories spk

Rev

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

Rev 170 Rev 197
Line 24... Line 24...
24
	Utils::String _sEmail;
24
	Utils::String _sEmail;
25
	Utils::String _sDescription;
25
	Utils::String _sDescription;
26
	Utils::String _sCreationDate;
26
	Utils::String _sCreationDate;
27
	Utils::String _sForumLink;
27
	Utils::String _sForumLink;
28
 
28
 
29
	Utils::String _sFilename;
29
	Utils::WString _sFilename;
30
	Utils::String _sExportFilename;
30
	Utils::String _sExportFilename;
31
 
31
 
32
	std::map<unsigned int, Utils::String> *_pAutoExtract;
32
	std::map<unsigned int, Utils::String> *_pAutoExtract;
33
	std::map<unsigned int, Utils::String> *_pAutoExport;
33
	std::map<unsigned int, Utils::String> *_pAutoExport;
34
	Utils::CList<SNames> *_lNames;
34
	Utils::CList<SNames> *_lNames;
Line 60... Line 60...
60
	const Utils::String	&description	() const { return _sDescription; }
60
	const Utils::String	&description	() const { return _sDescription; }
61
	const Utils::String	&forumLink		() const { return _sForumLink; }
61
	const Utils::String	&forumLink		() const { return _sForumLink; }
62
	int					 recommended	() const { return _iRecommended; }
62
	int					 recommended	() const { return _iRecommended; }
63
	int					 easeOfUse		() const { return _iEaseOfUse; }
63
	int					 easeOfUse		() const { return _iEaseOfUse; }
64
	int					 gameChanging	() const { return _iGameChanging; }
64
	int					 gameChanging	() const { return _iGameChanging; }
65
	const Utils::String &filename		() const { return _sFilename; }
65
	const Utils::WString &filename		() const { return _sFilename; }
66
	const Utils::String &exportFilename	() const { return _sExportFilename; }
66
	const Utils::String &exportFilename	() const { return _sExportFilename; }
67
	const CInstallText  *installText	() const { return _pInstallText; }
67
	const CInstallText  *installText	() const { return _pInstallText; }
68
	const CInstallText  *uninstallText	() const { return _pUninstallText; }
68
	const CInstallText  *uninstallText	() const { return _pUninstallText; }
69
	int					 pluginType		() const { return _iPluginType; }
69
	int					 pluginType		() const { return _iPluginType; }
70
	bool				 hasChanged		() const { return _bChanged; }
70
	bool				 hasChanged		() const { return _bChanged; }
Line 80... Line 80...
80
	void setWebAddress		( const Utils::String &str ) { _changed(); _sWebAddress = str; }
80
	void setWebAddress		( const Utils::String &str ) { _changed(); _sWebAddress = str; }
81
	void setWebSite			( const Utils::String &str ) { _changed(); _sWebSite = str; }
81
	void setWebSite			( const Utils::String &str ) { _changed(); _sWebSite = str; }
82
	void setEmail			( const Utils::String &str ) { _changed(); _sEmail = str; }
82
	void setEmail			( const Utils::String &str ) { _changed(); _sEmail = str; }
83
	void setCreationDate	( const Utils::String &str ) { _changed(); _sCreationDate = str; }
83
	void setCreationDate	( const Utils::String &str ) { _changed(); _sCreationDate = str; }
84
	void setDescription		( const Utils::String &str ) { _changed(); _parseDescription(str); }
84
	void setDescription		( const Utils::String &str ) { _changed(); _parseDescription(str); }
85
	void setFilename		( const Utils::String &str ) { _sFilename = str; }
85
	void setFilename		( const Utils::WString &str ) { _sFilename = str; }
86
	void setExportFilename	( const Utils::String &str ) { _sExportFilename = str; }
86
	void setExportFilename	( const Utils::String &str ) { _sExportFilename = str; }
87
	void setForumLink		( const Utils::String &str ) { _changed(); _sForumLink = str; }
87
	void setForumLink		( const Utils::String &str ) { _changed(); _sForumLink = str; }
88
	void setRecommended		( int i )					 { _changed(); _iRecommended = i; }
88
	void setRecommended		( int i )					 { _changed(); _iRecommended = i; }
89
	void setGameChanging	( int i )					 { _changed(); _iGameChanging = i; }
89
	void setGameChanging	( int i )					 { _changed(); _iGameChanging = i; }
90
	void setEaseOfUse		( int i )					 { _changed(); _iEaseOfUse = i; }
90
	void setEaseOfUse		( int i )					 { _changed(); _iEaseOfUse = i; }