Implemented cylinder shape, also fixed the coordinate system (again). I fucking hate...
[fail.git] / io / SeekableStream.h
blobb8d06e569d2afddf754901f3abb5758a6f491528
1 #ifndef AWFUL_IO_SEEKABLESTREAM_H_
2 #define AWFUL_IO_SEEKABLESTREAM_H_
4 #include "core/core.h"
5 #include "InputStream.h"
6 #include "OutputStream.h"
7 #include "Seekable.h"
9 namespace awful { namespace io
11 class SeekableStream : public InputStream, public OutputStream, public Seekable
16 #endif