This commit is contained in:
Glenn Maynard
2005-06-01 23:47:56 +00:00
parent 5b3007b21b
commit c14c03c351
+10 -10
View File
@@ -30,16 +30,6 @@ static struct FileDriverEntry_DIR: public FileDriverEntry
class RageFileObjDirect: public RageFileObj
{
private:
int fd;
CString path; /* for Copy */
CString write_buf;
bool FinalFlush();
int m_iMode;
public:
RageFileObjDirect( const CString &path, int fd_, int mode_ );
virtual ~RageFileObjDirect();
@@ -50,6 +40,16 @@ public:
virtual RageFileBasic *Copy() const;
virtual CString GetDisplayPath() const { return path; }
virtual int GetFileSize() const;
private:
int fd;
CString path; /* for Copy */
CString write_buf;
bool FinalFlush();
int m_iMode;
};