~ubuntu-branches/ubuntu/wily/kipi-plugins/wily

« back to all changes in this revision

Viewing changes to dngconverter/plugin/settingswidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-12-13 12:14:45 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20101213121445-ukbi37gdnr50yzzi
Tags: 1.6.0-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 * Date        : 2008-09-24
7
7
 * Description : save settings widgets
8
8
 *
9
 
 * Copyright (C) 2008-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
9
 * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
10
10
 *
11
11
 * This program is free software; you can redistribute it
12
12
 * and/or modify it under the terms of the GNU General
30
30
namespace KIPIDNGConverterPlugin
31
31
{
32
32
 
33
 
class SettingsWidgetPriv;
34
 
 
35
33
class SettingsWidget : public QWidget
36
34
{
37
35
    Q_OBJECT
46
44
 
47
45
public:
48
46
 
49
 
    SettingsWidget(QWidget *parent);
 
47
    SettingsWidget(QWidget* parent);
50
48
    ~SettingsWidget();
51
49
 
52
50
    ConflictRule conflictRule();
72
70
 
73
71
private:
74
72
 
 
73
    class SettingsWidgetPriv;
75
74
    SettingsWidgetPriv* const d;
76
75
};
77
76