add header file for stream (no implementation yet)

master
Daniel Kolesa 2015-05-12 21:27:46 +01:00
parent e3d5da3e66
commit 3e51a86aa4
1 changed files with 16 additions and 0 deletions

16
octa/stream.h 100644
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