Subversion Repositories spk

Rev

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

Rev 179 Rev 185
Line 2... Line 2...
2
#define __FILE_IO_H__
2
#define __FILE_IO_H__
3
 
3
 
4
#pragma warning( push )
4
#pragma warning( push )
5
#pragma warning( disable : 4251)
5
#pragma warning( disable : 4251)
6
 
6
 
7
#include "CyString.h"
-
 
8
#include "StringList.h"
-
 
9
#include "Utils/StringList.h"
7
#include "Utils/StringList.h"
10
#include <fstream>
8
#include <fstream>
11
#include <vector>
9
#include <vector>
12
#include "DirIO.h"
10
#include "DirIO.h"
13
 
11
 
Line 35... Line 33...
35
	static bool Exists(const Utils::String &filename);
33
	static bool Exists(const Utils::String &filename);
36
 
34
 
37
public:
35
public:
38
	CFileIO();
36
	CFileIO();
39
	CFileIO(const Utils::String &sFilename, bool bBinary);
37
	CFileIO(const Utils::String &sFilename, bool bBinary);
40
	CFileIO(CyString filename);
38
	CFileIO(const Utils::String &filename);
41
	CFileIO(C_File *file);
39
	CFileIO(C_File *file);
42
	~CFileIO ();
40
	~CFileIO ();
43
 
41
 
44
	bool startWrite();
42
	bool startWrite();
45
	bool startRead();
43
	bool startRead();