Minor binsize savings.
[kugel-rb.git] / rbutil / rbutilqt / base / bootloaderinstalltcc.h
blobb91970034e2aa167fb272e5591411415ffeb2e66
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2009 by Tomer Shalev
10 * $Id$
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.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 * This file is a modified version of the AMS installer by Dominik Wenger
20 ****************************************************************************/
21 #ifndef BOOTLOADERINSTALLTCC_H
22 #define BOOTLOADERINSTALLTCC_H
24 #include <QtCore>
25 #include "bootloaderinstallbase.h"
27 //! bootloader installation derivate based on mktccboot
28 class BootloaderInstallTcc : public BootloaderInstallBase
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();
39 private:
41 private slots:
42 void installStage2(void);
45 #endif