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