/** -*- C++ -*- ** ** KAI C++ Compiler ** ** Copyright (C) 1996-2001 Intel Corp. All rights reserved. **/ /** ** Lib++ : The Modena C++ Standard Library, ** Version 2.4, October 1997 ** ** Copyright (c) 1995-1997 Modena Software Inc. **/ /** Split by KAI into and so that users of ** and do not have to buy the overhead of __msipl_ios_init. **/ #ifndef __KAI_IOSTREAMBASE #define __KAI_IOSTREAMBASE #include #include #include namespace std { template class basic_iostream : public basic_istream, public basic_ostream { public: explicit basic_iostream(basic_streambuf* sb) : basic_istream(sb), basic_ostream(sb), basic_ios(sb) { } virtual ~basic_iostream() { } }; } // namespace std #endif /* __KAI_IOSTREAMBASE */