diff --git a/octa/stream.h b/octa/stream.h new file mode 100644 index 0000000..677893e --- /dev/null +++ b/octa/stream.h @@ -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 \ No newline at end of file