📄 fileinputstream.h
字号:
#ifndef _IO_FILEINPUTSTREAM_H
#define _IO_FILEINPUTSTREAM_H
#include <io/InputStream.h>
namespace io
{
/**
* FileInputStream reads bytes from a standard file.
*
* @ingroup io
*/
class FileInputStream :
public InputStream
{
public:
/**
* Opens a file input stream.
*/
explicit FileInputStream( const char* filename );
///
~FileInputStream();
/**
* Tries to read specified number of bytes from the stream.
* Doesn't block the caller if specified number of bytes isn't available.
*
* @return Number of bytes actually read.
*/
int read( void* data, int size );
/**
* Returns the number of bytes that can be read from the stream without blocking.
*/
int available() const;
lang::String toString() const {return m_name;}
static void expandPath( char* buf, int bufsize, const char* fname );
private:
lang::String m_name;
#ifdef __ee__
int m_fh;
#else
void* m_fh;
#endif
FileInputStream();
FileInputStream( const FileInputStream& );
FileInputStream& operator=( const FileInputStream& );
};
} // io
#endif // _IO_FILEINPUTSTREAM_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -