Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions source/text.tex
Original file line number Diff line number Diff line change
Expand Up @@ -4144,30 +4144,30 @@
\begin{codeblock}
namespace std {
template<class charT, class InputIterator = istreambuf_iterator<charT>>
class money_get : public locale::facet {
public:
using @\libmember{char_type}{money_get}@ = charT;
using @\libmember{iter_type}{money_get}@ = InputIterator;
using @\libmember{string_type}{money_get}@ = basic_string<charT>;
class money_get : public locale::facet {
public:
using @\libmember{char_type}{money_get}@ = charT;
using @\libmember{iter_type}{money_get}@ = InputIterator;
using @\libmember{string_type}{money_get}@ = basic_string<charT>;

explicit money_get(size_t refs = 0);
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;
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 @\libmember{id}{money_get}@;
static locale::id @\libmember{id}{money_get}@;

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;
};
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;
};
}
\end{codeblock}

Expand Down
Loading