1.3 KiB
[locale.money.get.general]
28 Text processing library [text]
28.3 Localization library [localization]
28.3.4 Standard locale categories [locale.categories]
28.3.4.7 The monetary category [category.monetary]
28.3.4.7.2 Class template money_get [locale.money.get]
28.3.4.7.2.1 General [locale.money.get.general]
namespace std {template<class charT, class InputIterator = istreambuf_iterator>class money_get : public locale::facet {public:using char_type = charT; using iter_type = InputIterator; using string_type = basic_string; explicit money_get(size_t refs = 0);
iter_type get(iter_type s, iter_type end, bool intl, ios_base& f, ios_base::iostate& err, long double& units) const; iter_type get(iter_type s, iter_type end, bool intl, ios_base& f, ios_base::iostate& err, string_type& digits) const; static locale::id id; protected:~money_get(); virtual iter_type do_get(iter_type, iter_type, bool, ios_base&, ios_base::iostate& err, long double& units) const; virtual iter_type do_get(iter_type, iter_type, bool, ios_base&, ios_base::iostate& err, string_type& digits) const; };}