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