summaryrefslogtreecommitdiff
path: root/src/feature.h
blob: 77e283caf6d4cfbd74f2db00eb3c56429f32c1b4 (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
45
46
47
48
49
50
51
52
53
54
55
56
#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;

private:
    /**
     * Set to true in case the matching feature was given as commandline
     * argument.
     */
    bool enabled_cmdline;
    /**
     * Set from the GUI options. This will not be set in case the GUI is
     * not started at all.
     */
    bool enabled_options;
    
    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(std::string name, std::string description);
    virtual ~Feature();
    virtual void set_enable_cmdline();
    virtual void set_enable_options(bool status);

public:
    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(std::string feature_name);
    static void enable_feature(std::string feature_name, bool status);
};

#endif
contact: Jan Huwald // Impressum