Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4973 right-hear 1
#ifndef _CSTDIO_INCLUDED
2
#define _CSTDIO_INCLUDED
3
#include 
4
class ios
5
{
6
public:
7
    enum open_mode { in        = 0x01,
8
                     out       = 0x02,
9
                     ate       = 0x04,
10
                     app       = 0x08,
11
                     trunc     = 0x10,
12
                     nocreate  = 0x20,
13
                     noreplace = 0x40,
14
                     binary    = 0x80 };
15
    enum seek_dir { beg=0, cur=1, end=2 };
16
 
17
};
18
#endif