FFEA_user_info.h
Go to the documentation of this file.
1 //
2 // This file is part of the FFEA simulation package
3 //
4 // Copyright (c) by the Theory and Development FFEA teams,
5 // as they appear in the README.md file.
6 //
7 // FFEA is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // FFEA is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with FFEA. If not, see <http://www.gnu.org/licenses/>.
19 //
20 // To help us fund FFEA development, we humbly ask that you cite
21 // the research papers on the package.
22 //
23 
24 #ifndef FFEA_USER_INFO_H_INCLUDED
25 #define FFEA_USER_INFO_H_INCLUDED
26 
27 #include <iostream>
28 #include <sstream>
29 #include <string>
30 
31 using namespace std;
32 
33 // Variables
34 namespace userInfo {
35  extern string log_out_fname;
36  extern int verblevel;
37  extern FILE *log_out;
38 }
39 
40 // Methods
41 void set_verbosity_level(int l);
42 void set_log_fname(string s);
43 
44 void print_normal(string s);
45 void print_mid(string s);
46 void print_high(string s);
47 void print_mania(string s);
48 
49 void print_ffea_version(FILE *fout);
50 void print_ffea_compilation_details(FILE *fout);
51 
52 
53 #endif
Definition: FFEA_user_info.h:34
void print_mania(string s)
Definition: FFEA_user_info.cpp:54
string log_out_fname
Definition: FFEA_user_info.cpp:30
void print_high(string s)
Definition: FFEA_user_info.cpp:48
STL namespace.
FILE * log_out
Definition: FFEA_user_info.cpp:32
int verblevel
Definition: FFEA_user_info.cpp:31
void set_verbosity_level(int l)
Definition: FFEA_user_info.cpp:34
void print_normal(string s)
void print_mid(string s)
Definition: FFEA_user_info.cpp:42
void set_log_fname(string s)
Definition: FFEA_user_info.cpp:38
void print_ffea_version(FILE *fout)
Definition: FFEA_user_info.cpp:91
void print_ffea_compilation_details(FILE *fout)
Definition: FFEA_user_info.cpp:60