summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/base/bootloaderinstalltcc.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/base/bootloaderinstalltcc.h')
-rw-r--r--rbutil/rbutilqt/base/bootloaderinstalltcc.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/base/bootloaderinstalltcc.h b/rbutil/rbutilqt/base/bootloaderinstalltcc.h
new file mode 100644
index 0000000000..b91970034e
--- /dev/null
+++ b/rbutil/rbutilqt/base/bootloaderinstalltcc.h
@@ -0,0 +1,45 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2009 by Tomer Shalev
10 * $Id$
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 * This file is a modified version of the AMS installer by Dominik Wenger
19 *
20 ****************************************************************************/
21#ifndef BOOTLOADERINSTALLTCC_H
22#define BOOTLOADERINSTALLTCC_H
23
24#include <QtCore>
25#include "bootloaderinstallbase.h"
26
27//! bootloader installation derivate based on mktccboot
28class BootloaderInstallTcc : public BootloaderInstallBase
29{
30 Q_OBJECT
31 public:
32 BootloaderInstallTcc(QObject *parent);
33 bool install(void);
34 bool uninstall(void);
35 BootloaderInstallBase::BootloaderType installed(void);
36 Capabilities capabilities(void);
37 QString ofHint();
38
39 private:
40
41 private slots:
42 void installStage2(void);
43};
44
45#endif