123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- // Copyright (c) 2001-2011 Hartmut Kaiser
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- ///////////////////////////////////////////////////////////////////////////////
- // directives related to alignment
- // left_align[...], right_align[...], center[...]
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- // directives related to truncating length
- // maxwidth[...], columns[]
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- // directives related to character case
- // lower[...] and upper[...]
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- // directives related to delimiting generators
- // delimit[...] and verbatim[...]
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- // repeat directives
- // repeat[...]
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- // omit, skip, and duplicate directives
- // omit[...], skip[...], duplicate[...]
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- // buffer directive
- // buffer[...]
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- // strict and relaxed directives
- // strict[...], relaxed[...]
- ///////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////////
- // as_string and as_wstring directives
- // as_string[...], as_wstring[...]
- ///////////////////////////////////////////////////////////////////////////////
|