summaryrefslogtreecommitdiff
path: root/nix/boost/format/internals_fwd.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'nix/boost/format/internals_fwd.hpp')
-rw-r--r--nix/boost/format/internals_fwd.hpp65
1 files changed, 0 insertions, 65 deletions
diff --git a/nix/boost/format/internals_fwd.hpp b/nix/boost/format/internals_fwd.hpp
deleted file mode 100644
index a8ebf7c3abc..00000000000
--- a/nix/boost/format/internals_fwd.hpp
+++ /dev/null
@@ -1,65 +0,0 @@
1// -*- C++ -*-
2// Boost general library 'format' ---------------------------
3// See http://www.boost.org for updates, documentation, and revision history.
4
5// (C) Samuel Krempp 2001
6// krempp@crans.ens-cachan.fr
7// Permission to copy, use, modify, sell and
8// distribute this software is granted provided this copyright notice appears
9// in all copies. This software is provided "as is" without express or implied
10// warranty, and with no claim as to its suitability for any purpose.
11
12// ideas taken from Rüdiger Loos's format class
13// and Karl Nelson's ofstream (also took its parsing code as basis for printf parsing)
14
15// ------------------------------------------------------------------------------
16// internals_fwd.hpp : forward declarations, for internal headers
17// ------------------------------------------------------------------------------
18
19#ifndef BOOST_FORMAT_INTERNAL_FWD_HPP
20#define BOOST_FORMAT_INTERNAL_FWD_HPP
21
22#include "boost/format/format_fwd.hpp"
23
24
25namespace boost {
26namespace io {
27
28namespace detail {
29 struct stream_format_state;
30 struct format_item;
31}
32
33
34namespace detail {
35
36 // these functions were intended as methods,
37 // but MSVC have problems with template member functions :
38
39 // defined in format_implementation.hpp :
40 template<class T>
41 basic_format& modify_item_body( basic_format& self,
42 int itemN, const T& manipulator);
43
44 template<class T>
45 basic_format& bind_arg_body( basic_format& self,
46 int argN, const T& val);
47
48 template<class T>
49 void apply_manip_body( stream_format_state& self,
50 T manipulator);
51
52 // argument feeding (defined in feed_args.hpp ) :
53 template<class T>
54 void distribute(basic_format& self, T x);
55
56 template<class T>
57 basic_format& feed(basic_format& self, T x);
58
59} // namespace detail
60
61} // namespace io
62} // namespace boost
63
64
65#endif // BOOST_FORMAT_INTERNAL_FWD_HPP