/*  Copyright (C) 2015  Povilas Kanapickas <povilas@radix.lt>

    This file is part of cppreference-doc

    This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
    Unported License. To view a copy of this license, visit
    http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative
    Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.

    Permission is granted to copy, distribute and/or modify this document
    under the terms of the GNU Free Documentation License, Version 1.3 or
    any later version published by the Free Software Foundation; with no
    Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
*/

#ifndef CPPREFERENCE_IOMANIP_H
#define CPPREFERENCE_IOMANIP_H

#include <iosfwd>

namespace std {

struct __unspecified { };

__unspecified resetiosflags(std::ios_base::fmtflags mask);
__unspecified setiosflags(std::ios_base::fmtflags mask);
__unspecified setbase(int base);
template<class CharT>
__unspecified setfill(CharT c);
__unspecified setprecision(int n);
__unspecified setw(int n);

#if CPPREFERENCE_STDVER>= 2011
template<class MoneyT>
__unspecified get_money(MoneyT& mon, bool intl = false);
template<class MoneyT>
__unspecified put_money(const MoneyT& mon, bool intl = false);
template<class CharT>
__unspecified get_time(std::tm* tmb, const CharT* fmt);
template<class CharT>
__unspecified put_time(const std::tm* tmb, const CharT* fmt);

#endif // CPPREFERENCE_STDVER>= 2011
#if CPPREFERENCE_STDVER>= 2014
template<class CharT>
__unspecified quoted(const CharT* s,
                     CharT delim = CharT('"'), CharT escape = CharT('\\'));

template<class CharT, class Traits, class Allocator>
__unspecified quoted(const std::basic_string<CharT, Traits, Allocator>& s,
                     CharT delim = CharT('"'), CharT escape = CharT('\\'));

template<class CharT, class Traits, class Allocator>
__unspecified quoted(std::basic_string<CharT, Traits, Allocator>& s,
                     CharT delim = CharT('"'), CharT escape = CharT('\\'));
#endif // CPPREFERENCE_STDVER>= 2014

} // namespace std

#endif // CPPREFERENCE_IOMANIP_H
