Subversion Repositories spk

Rev

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

Rev 93 Rev 105
Line 22... Line 22...
22
	~COriginalFiles(void);
22
	~COriginalFiles(void);
23
 
23
 
24
	int count() const;
24
	int count() const;
25
	bool isOriginal(C_File *f) const;
25
	bool isOriginal(C_File *f) const;
26
 
26
 
-
 
27
	void installed(CBaseFile *package);
27
	void backup(CBaseFile *package, CyStringList *errors);
28
	void backup(CBaseFile *package, CyStringList *errors);
28
	bool backupFile(C_File *f, CyStringList *errors);
29
	bool backupFile(C_File *f, CyStringList *errors);
29
	bool doBackup(C_File *f, CyStringList *errors);
30
	bool doBackup(C_File *f, CyStringList *errors);
30
	int  restoreAll(CProgressInfo *info, int files, int max);
31
	int  restoreAll(CProgressInfo *info, int files, int max);
31
	bool restoreFile(C_File *f, CyStringList *errors);
32
	bool restoreFile(C_File *f, CyStringList *errors);
Line 35... Line 36...
35
	bool writeData(CyStringList *lines);
36
	bool writeData(CyStringList *lines);
36
 
37
 
37
	void reset();
38
	void reset();
38
 
39
 
39
private:
40
private:
-
 
41
	void _storeOverride(C_File *f);
40
	void _storeFiles(int filetype, const Utils::String &searchPath, const CLinkList<C_File> *pFiles);
42
	void _storeFiles(int filetype, const Utils::String &searchPath, const CLinkList<C_File> *pFiles);
41
	void _add(int filetype, const Utils::String &filename, const Utils::String &searchPath, const CLinkList<C_File> *pFiles);
43
	void _add(int filetype, const Utils::String &filename, const Utils::String &searchPath, const CLinkList<C_File> *pFiles);
42
	C_File *_getFile(C_File *file) const;
44
	C_File *_getFile(C_File *file) const;
43
};
45
};
44
 
46