~system-settings-touch/ubuntu-system-settings/trunk

« back to all changes in this revision

Viewing changes to plugins/reset/reset.h

  • Committer: Bileto Bot
  • Author(s): Ken VanDine
  • Date: 2017-04-06 13:38:08 UTC
  • mfrom: (1772.3.5 readd_launcher_reset)
  • Revision ID: ci-train-bot@canonical.com-20170406133808-381oua9p9ssu5imk
Add reset launcher to the launcher panel (LP: #1677232)

Approved by: Jonas G. Drange, system-apps-ci-bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2013 Canonical Ltd
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify
5
 
 * it under the terms of the GNU General Public License version 3 as
6
 
 * published by the Free Software Foundation.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 * GNU General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 *
16
 
 * Authors:
17
 
 * Sebastien Bacher <sebastien.bacher@canonical.com>
18
 
 *
19
 
*/
20
 
 
21
 
#ifndef RESET_H
22
 
#define RESET_H
23
 
 
24
 
#include <QObject>
25
 
 
26
 
class Reset : public QObject
27
 
{
28
 
    Q_OBJECT
29
 
 
30
 
public:
31
 
    explicit Reset(QObject *parent = 0);
32
 
    ~Reset();
33
 
    Q_INVOKABLE bool factoryReset(void);
34
 
};
35
 
 
36
 
#endif // RESET_H