]> git.stg.codes - stg.git/blobdiff - projects/traffcounter/logger.h
Removed obsolete stuff.
[stg.git] / projects / traffcounter / logger.h
diff --git a/projects/traffcounter/logger.h b/projects/traffcounter/logger.h
deleted file mode 100644 (file)
index 85c17be..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef __LOGGER_H__
-#define __LOGGER_H__
-
-#include <iostream>
-#include <string>
-
-#define LOG_IT (log << __FILE__ << ":" << __LINE__ << " ")
-
-class STGLogger {
-public:
-    STGLogger() : out(std::cout) {};
-    STGLogger(std::ostream & stream) : out(stream) {};
-    ~STGLogger();
-
-    std::ostream &operator <<(const std::string & val);
-private:
-    void LogDate();
-    std::ostream & out;
-};
-
-extern STGLogger log;
-
-#endif