Files
itgmania212121/stepmania/src/RageFileDriverDirect.h
T

20 lines
378 B
C++

#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, RageFile::OpenMode mode, RageFile &p, int &err );
bool Remove( const CString &sPath );
bool Ready();
private:
CString root;
};
#endif