summaryrefslogtreecommitdiff
path: root/config.h
blob: f1dfacbc580c422d681dbbaa47b4f3262a016892 (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
/*
 * config.h: A plugin for the Video Disk Recorder
 *
 * See the README file for copyright information and how to reach the author.
 *
 * $Id$
 */

#ifndef _DUPLICATES_CONFIG_H
#define _DUPLICATES_CONFIG_H

class cDuplicatesConfig {
  public:
    // variables
    int title;
    int hidden;
    // member functions
    cDuplicatesConfig();
    ~cDuplicatesConfig();
    bool SetupParse(const char *Name, const char *Value);
    void Store(void);
};

extern cDuplicatesConfig dc;

#endif