blob: 20b4f16d49295b61faad905948965373010b5b73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
|