Annex D (normative)
Compatibility features
[depr]
D.15
char*
streams
[depr.str.strstreams]
D.15.3
Class
istrstream
[depr.istrstream]
D.15.3.1
General
[depr.istrstream.general]
🔗
namespace
std
{
class
istrstream
:
public
basic_istream
<
char
>
{
public
:
explicit
istrstream
(
const
char
*
s
)
;
explicit
istrstream
(
char
*
s
)
; istrstream
(
const
char
*
s, streamsize n
)
; istrstream
(
char
*
s, streamsize n
)
;
virtual
~
istrstream
(
)
; strstreambuf
*
rdbuf
(
)
const
;
char
*
str
(
)
;
private
:
strstreambuf sb;
//
exposition only
}
;
}
1
#
The class
istrstream
supports the reading of objects of class
strstreambuf
.
It supplies a
strstreambuf
object to control the associated array object
.
For the sake of exposition, the maintained data is presented here as:
(1.1)
sb
, the
strstreambuf
object
.