]> git.tdb.fi Git - builder.git/blobdiff - source/config.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / config.h
diff --git a/source/config.h b/source/config.h
deleted file mode 100644 (file)
index 1b78e3a..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef CONFIG_H_
-#define CONFIG_H_
-
-#include <map>
-#include <string>
-#include "option.h"
-
-typedef std::map<std::string, std::string> RawOptionMap;
-
-class Config
-{
-public:
-       struct Option
-       {
-               std::string name;
-               std::string defv;
-               std::string descr;
-               std::string value;
-
-               Option(const std::string &, const std::string &, const std::string &);
-       };
-       typedef std::map<std::string, Option> OptionMap;
-
-       void add_option(const std::string &, const std::string &, const std::string &);
-       const Option &get_option(const std::string &) const;
-       bool is_option(const std::string &) const;
-       bool process(const RawOptionMap &);
-       void load(const std::string &); 
-private:
-       OptionMap options;
-};
-
-#endif