Reference
C Library
IOstream Library
Strings library
STL Containers
STL Algorithms
Miscellaneous
Miscellaneous
complex
exception
functional
iterator
limits
locale
memory
new
numeric
stdexcept
typeinfo
utility
valarray
locale
has_facet
isalnum
isalpha
iscntrl
isdigit
isgraph
islower
isprint
ispunct
isspace
isupper
isxdigit
locale
tolower
toupper
use_facet
standard facets:
codecvt
codecvt_base
codecvt_byname
collate
collate_byname
ctype
ctype_base
ctype_byname
messages
messages_base
messages_byname
moneypunct
moneypunct_byname
money_base
money_get
money_put
numpunct
numpunct_byname
num_get
num_put
time_base
time_get
time_get_byname
time_put
time_put_byname
num_get
num_get::num_get
public member functions:
num_get::get
public member types:
num_get::char_type
num_get::iter_type
protected members:
num_get::do_get
num_get::~num_get


num_get::do_get

virtual protected member function
iter_type do_get (iter_type in, iter_type end, ios_base& str, ios_base::iostate& err, bool& val) const;
iter_type do_get (iter_type in, iter_type end, ios_base& str, ios_base::iostate& err, long& val) const;
iter_type do_get (iter_type in, iter_type end, ios_base& str, ios_base::iostate& err, unsigned short& val) const;
iter_type do_get (iter_type in, iter_type end, ios_base& str, ios_base::iostate& err, unsigned int& val) const;
iter_type do_get (iter_type in, iter_type end, ios_base& str, ios_base::iostate& err, unsigned long& val) const;
iter_type do_get (iter_type in, iter_type end, ios_base& str, ios_base::iostate& err, float& val) const;
iter_type do_get (iter_type in, iter_type end, ios_base& str, ios_base::iostate& err, double& val) const;
iter_type do_get (iter_type in, iter_type end, ios_base& str, ios_base::iostate& err, long double& val) const;
iter_type do_get (iter_type in, iter_type end, ios_base& str, ios_base::iostate& err, void*& val) const;

Get numeric value [virtual]

Virtual protected member function in charge of transforming sequences of characters into numerical values as described in public member function get (see num_get::get for details).

Polymorphic derived classes can redefine the behavior of this function.

See also