libostd/octa/stream.h

16 lines
273 B
C++

/* 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