]> git.tdb.fi Git - builder.git/blobdiff - source/logger.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / logger.h
diff --git a/source/logger.h b/source/logger.h
deleted file mode 100644 (file)
index 64c1315..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef LOGGER_H_
-#define LOGGER_H_
-
-#include <string>
-#include <vector>
-
-class Logger
-{
-private:
-       std::vector<std::string> enabled_channels;
-
-public:
-       void enable_channel(const std::string &);
-       void disable_channel(const std::string &);
-
-       void log(const std::string &, const std::string &) const;
-};
-
-#endif