Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
iostream.hpp
Go to the documentation of this file.
1
6/*
7 * This file is part of Algorithms library toolkit.
8 * Copyright (C) 2017 Jan Travnicek (jan.travnicek@fit.cvut.cz)
9
10 * Algorithms library toolkit is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14
15 * Algorithms library toolkit is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19
20 * You should have received a copy of the GNU General Public License
21 * along with Algorithms library toolkit. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24#pragma once
25
26#include <iostream>
27#include <ext/fdstream>
28#include <ext/istream>
29
30namespace ext {
31
37
38extern istream cin;
39
40extern ostream cout;
41
42extern ostream cerr;
43
44extern ostream clog;
45
46} /* namespace ext */
47
Definition: istream.h:32
A class implementing an output stream interface, with destination specified by file descriptor.
Definition: fdstream.hpp:217
Definition: ostream.h:14
Definition: sigHandler.cpp:20
istream cin
ostream cout
ostream clog
ostream cerr
ofdstream cmeasure(CMEASURE_FD, CERR_FD)
Instance of the cmeasure stream. Default behavior is output to cout, but when the descriptor number 5...
Definition: iostream.hpp:36