.. _program_listing_file__tmp_ws_src_ecl_core_ecl_streams_include_ecl_streams_text_stream.hpp: Program Listing for File text_stream.hpp ======================================== |exhale_lsh| :ref:`Return to documentation for file ` (``/tmp/ws/src/ecl_core/ecl_streams/include/ecl/streams/text_stream.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /***************************************************************************** ** Ifdefs *****************************************************************************/ #ifndef ECL_STREAMS_TEXT_STREAM_HPP_ #define ECL_STREAMS_TEXT_STREAM_HPP_ /***************************************************************************** ** Includes *****************************************************************************/ #include #include #include "text_streams/base_text_stream.hpp" #include "text_streams/output_text_stream.hpp" #include "text_streams/input_text_stream.hpp" #include "macros.hpp" /***************************************************************************** ** Namespaces *****************************************************************************/ namespace ecl { /***************************************************************************** ** Interface [TextStream] *****************************************************************************/ template class ECL_PUBLIC TextStream : public interfaces::InputTextStream::value >, public interfaces::OutputTextStream::value > { public: virtual ~TextStream() {}; }; } // namespace ecl #endif /* ECL_STREAMS_TEXT_STREAM_HPP_ */