blob: 7da1a88c711d592e1a7f6dcb04cd46b9a5c82391 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/*
filesystem/diskfile.h
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
#ifndef __INCLUDED_FILESYSTEM_DISKFILE_H__
#define __INCLUDED_FILESYSTEM_DISKFILE_H__
#include "filesystem/filesystem.h"
#include "sys/sys.h"
#include <stdio.h>
#include <string>
namespace filesystem
{
/**
* @brief implementation of File for a file on disk
*/
class DiskFile : public File
{
public:
DiskFile();
virtual ~DiskFile();
virtual bool open(const char * filename);
virtual void close();
virtual size_t read(void *buffer, size_t count);
virtual FILE *handle();
void skip(size_t count);
private:
FILE *diskfile_handle;
};
} // namespace filesystem
#endif // __INCLUDED_FILESYSTEM_DISKFILE_H__
|