~ubuntu-branches/ubuntu/wily/kid3/wily

« back to all changes in this revision

Viewing changes to src/plugins/discogsimport/discogsconfig.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell, Patrick Matthäi, Mark Purcell
  • Date: 2013-11-30 15:44:59 UTC
  • mfrom: (1.1.16) (2.1.18 sid)
  • Revision ID: package-import@ubuntu.com-20131130154459-s6lpalx8yy2zq7gx
Tags: 3.0.2-1
* New upstream release 

[ Patrick Matthäi ]
* New upstream release.
  - Add new libreadline-dev build dependency.
* Don't explicitly request xz compression - dpkg 1.17 does this by default.
* Bump Standards-Version to 3.9.5 (no changes needed).
* Fix Vcs-Browser control field.

[ Mark Purcell ]
* Switch to dh - reduce debian/rules bloat
* kid3 Replaces kid3-qt - low popcon, reduce archive bloat
* Fix vcs-field-not-canonical
* debian/compat -> 9
* Update Description:

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * \file discogsconfig.h
 
3
 * Discogs configuration.
 
4
 *
 
5
 * \b Project: Kid3
 
6
 * \author Urs Fleisch
 
7
 * \date 13 Sep 2005
 
8
 *
 
9
 * Copyright (C) 2005-2007  Urs Fleisch
 
10
 *
 
11
 * This file is part of Kid3.
 
12
 *
 
13
 * Kid3 is free software; you can redistribute it and/or modify
 
14
 * it under the terms of the GNU General Public License as published by
 
15
 * the Free Software Foundation; either version 2 of the License, or
 
16
 * (at your option) any later version.
 
17
 *
 
18
 * Kid3 is distributed in the hope that it will be useful,
 
19
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
20
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
21
 * GNU General Public License for more details.
 
22
 *
 
23
 * You should have received a copy of the GNU General Public License
 
24
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
25
 */
 
26
 
 
27
#ifndef DISCOGSCONFIG_H
 
28
#define DISCOGSCONFIG_H
 
29
 
 
30
#include "serverimporterconfig.h"
 
31
 
 
32
/**
 
33
 * Discogs configuration.
 
34
 */
 
35
class DiscogsConfig : public StoredConfig<DiscogsConfig, ServerImporterConfig> {
 
36
public:
 
37
  /**
 
38
   * Constructor.
 
39
   */
 
40
  DiscogsConfig();
 
41
 
 
42
  /**
 
43
   * Destructor.
 
44
   */
 
45
  virtual ~DiscogsConfig();
 
46
 
 
47
  /** Index in configuration storage */
 
48
  static int s_index;
 
49
};
 
50
 
 
51
#endif // DISCOGSCONFIG_H