00001
00015
00016 #ifndef OUTPUT_H
00017 #define OUTPUT_H
00018
00019 #include <string>
00020 #include <string.h>
00021 #include <stdarg.h>
00022 #include <sstream>
00023 #include <fstream>
00024 #include <iostream>
00025
00026 #include <ctime>
00027 #include <time.h>
00028
00029
00030 #include "../Exceptions/error.h"
00031
00032 namespace Output {
00033
00034 void open_log_file(string filename);
00035 void close_log_file();
00036 void echo(int msglvl, const char * format, ... );
00037 void set_output_lvl(int new_outputLvl);
00038
00039 }
00040
00041 #endif