Disable all code related to libXp
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / utility / c_filebuf.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: c_filebuf.h /main/4 1996/08/21 15:54:26 drk $ */
24
25 #ifndef _x_filebuf_h
26 #define _x_filebuf_h
27
28 #include "utility/c_streambuf.h"
29 #include "utility/c_ios.h"
30
31 class  filebuf : public streambuf
32 {
33 protected:
34    int _fd;
35    int _mode;
36    int _prev_action;
37    char* _name;
38
39    streampos current_pos;
40    streampos new_pos;
41    streampos default_new_pos;
42
43 protected:
44    void notify(int action_t); 
45    void _notify(int action_t);
46
47    int overflow();
48    int underflow() ;
49
50    int _seek();
51    int _seek(streampos pos, int whence);
52    int _write(char* ptr, int size);
53
54 public:
55    filebuf(int fd);
56    filebuf(const char* name, int mode, int protect = 0644);
57    ~filebuf();
58
59    int fd() { return _fd; };
60    int is_open();
61
62    int open(const char* name, int mode, int protect = 0644);
63    int close();
64
65    int flush() ;
66    int seekg(streampos delta) ;
67 };
68
69 #endif
70
71