Switch to unified view

a/src/utils/conftree.h b/src/utils/conftree.h
...
...
69
class ConfLine {
69
class ConfLine {
70
public:
70
public:
71
    enum Kind {CFL_COMMENT, CFL_SK, CFL_VAR, CFL_VARCOMMENT};
71
    enum Kind {CFL_COMMENT, CFL_SK, CFL_VAR, CFL_VARCOMMENT};
72
    Kind m_kind;
72
    Kind m_kind;
73
    std::string m_data;
73
    std::string m_data;
74
    std::string m_value;
74
    std::string m_aux;
75
    std::string m_aux;
75
    ConfLine(Kind k, const std::string& d, std::string a = std::string())
76
    ConfLine(Kind k, const std::string& d, std::string a = std::string())
76
        : m_kind(k), m_data(d), m_aux(a) {
77
        : m_kind(k), m_data(d), m_aux(a) {
77
    }
78
    }
78
    bool operator==(const ConfLine& o) {
79
    bool operator==(const ConfLine& o) {