Some tweaks and fixes. io and guigame are now shared libs.
[fail.git] / include / io / OutputStream.h
blob63ca8eea2c8b7b514df46b2bfd4eacb5e1a44500
1 #ifndef AWFUL_IO_OUTPUTSTREAM_H_
2 #define AWFUL_IO_OUTPUTSTREAM_H_
4 #include "core/core.h"
5 #include "io/io_export.h"
7 namespace awful { namespace io
9 class AWIO_EXPORT OutputStream : virtual public RefCounted
11 public:
12 virtual ~OutputStream() {}
13 virtual unsigned int write( const void* pBuffer_, unsigned int Size_ ) = 0;
17 #endif