3#ifndef RAGE_FILE_DRIVER_TIMEOUT_H
4#define RAGE_FILE_DRIVER_TIMEOUT_H
6#include "RageFileDriver.h"
16 RageFileBasic* Open(
const std::string& path,
int mode,
int& err)
override;
17 void FlushDirCache(
const std::string& sPath)
override;
18 bool Move(
const std::string& sOldPath,
19 const std::string& sNewPath)
override;
20 bool Remove(
const std::string& sPath)
override;
22 static void SetTimeout(
float fSeconds);
23 static void ResetTimeout() { SetTimeout(-1); }
Definition RageFileBasic.h:10
Definition RageFileDriverTimeout.h:11
Definition RageFileDriver.h:12
Definition RageFileDriverTimeout.cpp:73