genericopenlibs/cppstdlib/stl/stlport/stl/_istream.c
branchRCL_3
changeset 17 ef2ebc87518f
parent 0 e4d67989cc36
child 45 4b03adbd26ca
equal deleted inserted replaced
15:18da5738c9b6 17:ef2ebc87518f
  1401 
  1401 
  1402 // ----------------------------------------------------------------
  1402 // ----------------------------------------------------------------
  1403 // basic_iostream<> class
  1403 // basic_iostream<> class
  1404 // ----------------------------------------------------------------
  1404 // ----------------------------------------------------------------
  1405 
  1405 
       
  1406 
  1406 template <class _CharT, class _Traits>
  1407 template <class _CharT, class _Traits>
  1407 basic_iostream<_CharT, _Traits>
  1408 basic_iostream<_CharT, _Traits>
  1408   ::basic_iostream(basic_streambuf<_CharT, _Traits>* __buf)
  1409   ::basic_iostream(basic_streambuf<_CharT, _Traits>* __buf)
  1409     : basic_ios<_CharT, _Traits>(),
  1410     : basic_ios<_CharT, _Traits>(),
  1410       basic_istream<_CharT, _Traits>(__buf),
  1411       basic_istream<_CharT, _Traits>(__buf),
  1411       basic_ostream<_CharT, _Traits>(__buf) {
  1412       basic_ostream<_CharT, _Traits>(__buf) {
  1412   this->init(__buf);
  1413   this->init(__buf);
  1413 }
  1414 }
  1414 
  1415 
  1415 template <class _CharT, class _Traits>
       
  1416 basic_iostream<_CharT, _Traits>::~basic_iostream()
       
  1417 {}
       
  1418 
  1416 
  1419 _STLP_END_NAMESPACE
  1417 _STLP_END_NAMESPACE
  1420 
  1418 
  1421 #undef __BIS_int_type__
  1419 #undef __BIS_int_type__
  1422 #undef __BIS_pos_type__
  1420 #undef __BIS_pos_type__