#ifndef _STD_IOSFWD #define _STD_IOSFWD // from rb3 decomp #include namespace std { typedef mbstate_t __char_state_type; typedef mbstate_t __wchar_state_type; template struct char_traits; template <> struct char_traits; template <> struct char_traits; template class allocator; template > class basic_ios; template > class basic_streambuf; template > class basic_istream; template > class basic_ostream; template > class basic_iostream; template > class basic_filebuf; template > class basic_ifstream; template > class basic_ofstream; template > class basic_fstream; template < class CharT, class Traits = char_traits, class Allocator = allocator > class basic_stringbuf; template < class CharT, class Traits = char_traits, class Allocator = allocator > class basic_istringstream; template < class CharT, class Traits = char_traits, class Allocator = allocator > class basic_ostringstream; template < class CharT, class Traits = char_traits, class Allocator = allocator > class basic_stringstream; template > class istreambuf_iterator; template > class ostreambuf_iterator; typedef basic_ios ios; typedef basic_ios wios; typedef basic_streambuf streambuf; typedef basic_istream istream; typedef basic_ostream ostream; typedef basic_iostream iostream; typedef basic_stringbuf stringbuf; typedef basic_istringstream istringstream; typedef basic_ostringstream ostringstream; typedef basic_stringstream stringstream; typedef basic_filebuf filebuf; typedef basic_ifstream ifstream; typedef basic_ofstream ofstream; typedef basic_fstream fstream; typedef basic_streambuf wstreambuf; typedef basic_istream wistream; typedef basic_ostream wostream; typedef basic_iostream wiostream; typedef basic_stringbuf wstringbuf; typedef basic_istringstream wistringstream; typedef basic_ostringstream wostringstream; typedef basic_stringstream wstringstream; typedef basic_filebuf wfilebuf; typedef basic_ifstream wifstream; typedef basic_ofstream wofstream; typedef basic_fstream wfstream; template class fpos; typedef fpos<__char_state_type /*char_traits::state_type*/> streampos; typedef fpos<__wchar_state_type /*char_traits::state_type*/> wstreampos; class strstreambuf; class istrstream; class ostrstream; class strstream; } #endif