andrewm@0: /* andrewm@0: * logger.h andrewm@0: * andrewm@0: * Created on: Aug 6, 2014 andrewm@0: * Author: Victor Zappi and Andrew McPherson andrewm@0: */ andrewm@0: andrewm@0: #ifndef LOGGER_H_ andrewm@0: #define LOGGER_H_ andrewm@0: andrewm@0: #include andrewm@0: #include andrewm@0: #include andrewm@303: #include andrewm@0: #include // file handle andrewm@0: #include // stringstream andrewm@0: #include // stringstream andrewm@0: #include // alternative to dirent.h to handle files in dirs andrewm@0: #include // setfill andrewm@0: #include // elapsed time andrewm@0: andrewm@0: #include "config.h" andrewm@0: #include "prio.h" andrewm@0: andrewm@0: using namespace std; andrewm@0: andrewm@0: int initLogLoop(); andrewm@0: void *logLoop(void *); andrewm@0: andrewm@0: andrewm@0: #endif /* LOGGER_H_ */