Switch to unified view

a/src/common/rclconfig.h b/src/common/rclconfig.h
...
...
14
 *   Free Software Foundation, Inc.,
14
 *   Free Software Foundation, Inc.,
15
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
15
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
16
 */
16
 */
17
#ifndef _RCLCONFIG_H_INCLUDED_
17
#ifndef _RCLCONFIG_H_INCLUDED_
18
#define _RCLCONFIG_H_INCLUDED_
18
#define _RCLCONFIG_H_INCLUDED_
19
/* @(#$Id: rclconfig.h,v 1.41 2008-09-16 08:18:30 dockes Exp $  (C) 2004 J.F.Dockes */
19
/* @(#$Id: rclconfig.h,v 1.42 2008-10-08 16:15:22 dockes Exp $  (C) 2004 J.F.Dockes */
20
20
21
#include <list>
21
#include <list>
22
#include <string>
22
#include <string>
23
#include <vector>
23
#include <vector>
24
#include <set>
24
#include <set>
...
...
159
    /** mimeview: get/set external viewer exec string(s) for mimetype(s) */
159
    /** mimeview: get/set external viewer exec string(s) for mimetype(s) */
160
    string getMimeViewerDef(const string &mimetype);
160
    string getMimeViewerDef(const string &mimetype);
161
    bool getMimeViewerDefs(vector<pair<string, string> >&);
161
    bool getMimeViewerDefs(vector<pair<string, string> >&);
162
    bool setMimeViewerDef(const string& mimetype, const string& cmd);
162
    bool setMimeViewerDef(const string& mimetype, const string& cmd);
163
163
164
    /** Store/retrieve missing helpers description string */
165
    string getMissingHelperDesc();
166
    void storeMissingHelperDesc(const string &s);
164
167
165
    /** Find exec file for external filter. cmd is the command name from the
168
    /** Find exec file for external filter. cmd is the command name from the
166
     * command string returned by getMimeHandlerDef */
169
     * command string returned by getMimeHandlerDef */
167
    string findFilter(const string& cmd);
170
    string findFilter(const string& cmd);
168
171