/* * File: Log.h * Author: Alberto Lepe * Edited By: Ayham Mamoun * * Created on December 1, 2015, 6:00 PM */ #ifndef LOG_H #define LOG_H #include #include #include using namespace std; class LOG { public: vector* qm_log = new vector(); LOG() {} LOG &operator<<(const string &msg) { qm_log->push_back(msg); return *this; } private: }; #endif /* LOG_H */