00001 ///////////////////////////////////////////////////////////////////////////// 00002 /// 00003 /// @file streams.h 00004 /// 00005 /// Various output streams for the program. 00006 /// This file imports from CHomP all the output streams that are used within 00007 /// this software package: "sout" for standard output, "scon" for console 00008 /// output (showing progress indicators etc.), and "sbug" for debugging. 00009 /// If necessary, one can set up their own definitions of these streams. 00010 /// 00011 /// @author Pawel Pilarczyk 00012 /// 00013 ///////////////////////////////////////////////////////////////////////////// 00014 00015 // Copyright (C) 1997-2010 by Pawel Pilarczyk. 00016 // 00017 // This file is part of my research software package. This is free software; 00018 // you can redistribute it and/or modify it under the terms of the GNU 00019 // General Public License as published by the Free Software Foundation; 00020 // either version 2 of the License, or (at your option) any later version. 00021 // 00022 // This software is distributed in the hope that it will be useful, 00023 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00024 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00025 // GNU General Public License for more details. 00026 // 00027 // You should have received a copy of the GNU General Public License along 00028 // with this software; see the file "license.txt". If not, write to the 00029 // Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, 00030 // MA 02111-1307, USA. 00031 00032 // Started on March 14, 2009. Last revision: March 14, 2009. 00033 00034 00035 #ifndef _FINRESDYN_STREAMS_H_ 00036 #define _FINRESDYN_STREAMS_H_ 00037 00038 00039 // include selected header files from the CHomP library 00040 #include "chomp/system/textfile.h" 00041 00042 00043 // -------------------------------------------------- 00044 // ----------------- output streams ----------------- 00045 // -------------------------------------------------- 00046 00047 using chomp::homology::sout; 00048 using chomp::homology::scon; 00049 using chomp::homology::sbug; 00050 00051 00052 #endif // _FINRESDYN_STREAMS_H_ 00053
1.5.3