Atlas-C++
sockbuf.h
1 #ifndef SOCKBUF_H
2 #define SOCKBUF_H
3 
4 class sockbuf : public filebuf {
5  public:
6  sockbuf() { }
7  sockbuf(int fd) : filebuf(fd) { }
8  virtual streampos sys_seek(streamoff, _seek_dir) { return streampos(); }
9 };
10 
11 #endif // SOCKBUF_H
Definition: sockbuf.h:4

Copyright 2000-2004 the respective authors.

This document can be licensed under the terms of the GNU Free Documentation License or the GNU General Public License and may be freely distributed under the terms given by one of these licenses.