diff options
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/feature.h b/src/feature.h new file mode 100644 index 0000000..20b4f16 --- /dev/null +++ b/src/feature.h @@ -0,0 +1,44 @@ +#ifndef FEATURE_H_ +#define FEATURE_H_ + +#include <stdio.h> +#include <iostream> +#include <string> +#include <map> +#include <vector> + +class Feature +{ +public: + typedef std::vector<Feature *> list_t; + typedef list_t::iterator iterator; + + static const Feature ExperimentalConcatFunction; + + const std::string& get_name() const; + const std::string& get_description() const; + + bool is_enabled() const; + void enable(bool status); + + static iterator begin(); + static iterator end(); + + static void dump_features(); + static void enable_feature(const std::string &feature_name, bool status = true); + +private: + bool enabled; + + const std::string name; + const std::string description; + + typedef std::map<std::string, Feature *> map_t; + static map_t feature_map; + static list_t feature_list; + + Feature(const std::string &name, const std::string &description); + virtual ~Feature(); +}; + +#endif |