add header file for stream (no implementation yet)

This commit is contained in:
q66 2015-05-12 21:27:46 +01:00
parent e3d5da3e66
commit 3e51a86aa4

16
octa/stream.h Normal file
View file

@ -0,0 +1,16 @@
/* Generic stream implementation for OctaSTD.
*
* This file is part of OctaSTD. See COPYING.md for futher information.
*/
#ifndef OCTA_STREAM_H
#define OCTA_STREAM_H
namespace octa {
struct stream {
stream() {}
virtual ~stream() {}
};
}
#endif