Files
itgmania212121/stepmania/src/RageFileDriverDirect.h
T

20 lines
363 B
C++
Raw Normal View History

2003-12-04 08:25:59 +00:00
#ifndef RAGE_FILE_DRIVER_DIRECT_H
#define RAGE_FILE_DRIVER_DIRECT_H
#include "RageFileDriver.h"
class RageFileDriverDirect: public RageFileDriver
{
public:
RageFileDriverDirect( CString root );
RageFileObj *Open( const CString &path, int mode, RageFile &p, int &err );
2003-12-16 07:23:54 +00:00
bool Remove( const CString &sPath );
2003-12-05 00:07:18 +00:00
bool Ready();
2003-12-04 08:25:59 +00:00
private:
CString root;
};
#endif