From 3e51a86aa4d8c2ee4b6a0cbcf39ba9305c2aaed6 Mon Sep 17 00:00:00 2001 From: q66 Date: Tue, 12 May 2015 21:27:46 +0100 Subject: [PATCH] add header file for stream (no implementation yet) --- octa/stream.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 octa/stream.h 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