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

« back to all changes in this revision

Viewing changes to util/tst/ipstream_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/pstream.h"
 
22
#include "rheolef/compiler.h"
 
23
using namespace std;
 
24
//
 
25
// usage: ipstream_tst
 
26
//     enter filename on standard input
 
27
//     copy file on standard output
 
28
//
 
29
int main(int argc, char**argv)
 
30
{
 
31
    string filename;
 
32
    cin >> filename;
 
33
    string command = string("cat ") + filename;
 
34
    ipstream toto(command.c_str());
 
35
 
 
36
    cerr << "ipstream good = " << toto.good() << endl;
 
37
    cerr << "ipstream eof  = " << toto.eof() << endl;
 
38
    cerr << "ipstream fail = " << toto.fail() << endl;
 
39
    cerr << "ipstream bad  = " << toto.bad() << endl;
 
40
 
 
41
    while (toto) {
 
42
        int c = toto.get();
 
43
        if (c != EOF) cout.put(char(c));
 
44
    }
 
45
    toto.close();
 
46
    return 0;
 
47
}