The Finite Resolution Dynamics Software
streams.h
Go to the documentation of this file.
1 /////////////////////////////////////////////////////////////////////////////
2 ///
3 /// @file streams.h
4 ///
5 /// Various output streams for the program.
6 /// This file imports from CHomP all the output streams that are used within
7 /// this software package: "sout" for standard output, "scon" for console
8 /// output (showing progress indicators etc.), and "sbug" for debugging.
9 /// If necessary, one can set up their own definitions of these streams.
10 ///
11 /// @author Pawel Pilarczyk
12 ///
13 /////////////////////////////////////////////////////////////////////////////
14 
15 // Copyright (C) 1997-2010 by Pawel Pilarczyk.
16 //
17 // This file is part of my research software package. This is free software;
18 // you can redistribute it and/or modify it under the terms of the GNU
19 // General Public License as published by the Free Software Foundation;
20 // either version 2 of the License, or (at your option) any later version.
21 //
22 // This software is distributed in the hope that it will be useful,
23 // but WITHOUT ANY WARRANTY; without even the implied warranty of
24 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 // GNU General Public License for more details.
26 //
27 // You should have received a copy of the GNU General Public License along
28 // with this software; see the file "license.txt". If not, write to the
29 // Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
30 // MA 02111-1307, USA.
31 
32 // Started on March 14, 2009. Last revision: March 14, 2009.
33 
34 
35 #ifndef _FINRESDYN_STREAMS_H_
36 #define _FINRESDYN_STREAMS_H_
37 
38 
39 // include selected header files from the CHomP library
40 #include "chomp/system/textfile.h"
41 
42 
43 // --------------------------------------------------
44 // ----------------- output streams -----------------
45 // --------------------------------------------------
46 
47 using chomp::homology::sout;
48 using chomp::homology::scon;
49 using chomp::homology::sbug;
50 
51 
52 #endif // _FINRESDYN_STREAMS_H_
53