~ubuntu-branches/ubuntu/trusty/rheolef/trusty-proposed

« back to all changes in this revision

Viewing changes to util/tst/flags_tst.cc

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2010-06-12 09:08:59 UTC
  • Revision ID: james.westby@ubuntu.com-20100612090859-8gpm2gc7j3ab43et
Tags: upstream-5.89
ImportĀ upstreamĀ versionĀ 5.89

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
///
 
2
/// This file is part of Rheolef.
 
3
///
 
4
/// Copyright (C) 2000-2009 Pierre Saramito <Pierre.Saramito@imag.fr>
 
5
///
 
6
/// Rheolef is free software; you can redistribute it and/or modify
 
7
/// it under the terms of the GNU General Public License as published by
 
8
/// the Free Software Foundation; either version 2 of the License, or
 
9
/// (at your option) any later version.
 
10
///
 
11
/// Rheolef is distributed in the hope that it will be useful,
 
12
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
/// GNU General Public License for more details.
 
15
///
 
16
/// You should have received a copy of the GNU General Public License
 
17
/// along with Rheolef; if not, write to the Free Software
 
18
/// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
///
 
20
/// =========================================================================
 
21
#include "rheolef/iorheo.h"
 
22
using namespace std;
 
23
 
 
24
int main()
 
25
{
 
26
    // check basic flag access: initialize data structure
 
27
    iorheo::flag_type flags = iorheo::flags(clog);
 
28
 
 
29
    // check boolean accessors
 
30
    bool verbose = iorheo::getverbose(clog);
 
31
    if (verbose) clog << "have verbose" << endl;
 
32
    else clog << "have no verbose" << endl;
 
33
 
 
34
    cout << ml;
 
35
    bool have_ml = iorheo::getml(cout);
 
36
    warning_macro ("have_ml = " << have_ml);
 
37
    check_macro (have_ml, "io manipulators failed");
 
38
 
 
39
    // check field accessors
 
40
    iorheo::flag_type fmt = iorheo::flags(cout) & iorheo::format_field;
 
41
    warning_macro ("have_ml = " << fmt [iorheo::ml]);
 
42
    check_macro (fmt [iorheo::ml], "io group manipulators failed");
 
43
 
 
44
    // trace format_field move:
 
45
    warning_macro ("ml_flags = " << fmt);
 
46
    cout << bamg;
 
47
    fmt = iorheo::flags(cout) & iorheo::format_field;
 
48
    warning_macro ("bamg_flags = " << fmt);
 
49
    check_macro (!fmt [iorheo::ml], "io group manipulators failed");
 
50
    return 0;
 
51
}