PABLO  0.1
PArallel Balanced Linear Octree
 All Classes Functions Variables Pages
logFunct.hpp
1 # ifndef __LOG_FUNCT_HPP_
2 # define __LOG_FUNCT_HPP_
3 
4 // =================================================================================== //
5 // INCLUDES //
6 // =================================================================================== //
7 
8 // Standard Template Library
9 #if NOMPI == 0
10 #include <mpi.h>
11 #endif
12 # include <vector>
13 # include <string>
14 # include <fstream>
15 # include <sstream>
16 #include <chrono>
17 #include <ctime>
18 // =================================================================================== //
19 // NAMESPACES //
20 // =================================================================================== //
21 using namespace std;
22 
23 
24 // =================================================================================== //
25 // PROTOTYPES //
26 // =================================================================================== //
27 
28 // ----------------------------------------------------------------------------------- //
29 void writeLog(string);
30 
31 // ----------------------------------------------------------------------------------- //
32 
33 #endif