Subversion Repositories spk

Rev

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

Rev 160 Rev 174
Line 239... Line 239...
239
	int GetLastError () { return m_iLastError; }
239
	int GetLastError () { return m_iLastError; }
240
	int GetFileType() { return m_iFileType; }
240
	int GetFileType() { return m_iFileType; }
241
	FileType fileType() { return m_iFileType; }
241
	FileType fileType() { return m_iFileType; }
242
	//CyString GetFilename() { return _sName; }
242
	//CyString GetFilename() { return _sName; }
243
	const Utils::String &filename() const { return _sName; }
243
	const Utils::String &filename() const { return _sName; }
244
	CyString GetFullFilename() { return CyString(_sFullDir) + "/" + CyString(_sName); }
244
	CyString GetFullFilename() { return CyString(_sFullDir.toString()) + "/" + CyString(_sName.toString()); }
245
	Utils::String fullFilename() { return _sFullDir + "/" + _sName; }
245
	Utils::String fullFilename() { return _sFullDir + "/" + _sName; }
246
	long GetSize () { return m_lSize; }
246
	long GetSize () { return m_lSize; }
247
	time_t GetCreationTime () { return m_tTime; }
247
	time_t GetCreationTime () { return m_tTime; }
248
	CyString GetName() { return _sName; }
248
	CyString GetName() { return _sName.toString(); }
249
	const Utils::String &name() { return _sName; }
249
	const Utils::String &name() { return _sName; }
250
	CyString GetDir() { return _sDir; }
250
	CyString GetDir() { return _sDir.toString(); }
251
	const Utils::String &dir() { return _sDir; }
251
	const Utils::String &dir() { return _sDir; }
252
	Utils::String dataSizeString() const;
252
	Utils::String dataSizeString() const;
253
	CyString GetUncompressedSizeString ();
253
	CyString GetUncompressedSizeString ();
254
	CyString GetDirectory(CBaseFile *spkfile);
254
	CyString GetDirectory(CBaseFile *spkfile);
255
	Utils::String getDirectory(CBaseFile *spkfile) const;
255
	Utils::String getDirectory(CBaseFile *spkfile) const;