Switch to unified view

a/src/common/rclconfig.h b/src/common/rclconfig.h
...
...
88
     * wildcard filtering 
88
     * wildcard filtering 
89
     */
89
     */
90
    list<string> getConfNames(const char *pattern = 0) {
90
    list<string> getConfNames(const char *pattern = 0) {
91
    return m_conf->getNames(m_keydir, pattern);
91
    return m_conf->getNames(m_keydir, pattern);
92
    }
92
    }
93
94
    /** Check if name exists anywhere in config */
95
    bool hasNameAnywhere(const string& nm) 
96
    {
97
        return m_conf? m_conf->hasNameAnywhere(nm) : false;
98
    }
99
100
93
    /** Get default charset for current keydir (was set during setKeydir) 
101
    /** Get default charset for current keydir (was set during setKeydir) 
94
     * filenames are handled differently */
102
     * filenames are handled differently */
95
    const string &getDefCharset(bool filename = false);
103
    const string &getDefCharset(bool filename = false);
96
    /** Get guessCharset for current keydir (was set during setKeydir) */
104
    /** Get guessCharset for current keydir (was set during setKeydir) */
97
    bool getGuessCharset() {return guesscharset;}
105
    bool getGuessCharset() {return guesscharset;}