1 #if !defined HAVE_FXTIO_H__
2 #define      HAVE_FXTIO_H__
3 // This file is part of the FXT library.
4 // Copyright (C) 2010, 2012 Joerg Arndt
5 // License: GNU General Public License version 3 or later,
6 // see the file COPYING.txt in the main directory.
7 
8 
9 #include <iostream>
10 using std::ios;
11 using std::cout;
12 using std::cerr;
13 using std::cin;
14 using std::endl;
15 using std::flush;
16 
17 #include <iomanip>
18 using std::setw;
19 using std::setfill;
20 using std::setprecision;
21 using std::setbase;
22 using std::hex;
23 using std::dec;
24 
25 
26 #endif // !defined HAVE_FXTIO_H__
27