~nitrokey/nitrokey/release

« back to all changes in this revision

Viewing changes to src/ui/stick20lockfirmwaredialog.cpp

  • Committer: ggkitsas
  • Date: 2015-02-02 14:31:31 UTC
  • Revision ID: git-v1:b8ca589a5a5149133891043ed64b71d14d05e099
new directory structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* Author: Copyright (C) Rudolf Boeddeker  Date: 2014-06-02
 
3
*
 
4
* This file is part of Nitrokey 2
 
5
*
 
6
* Nitrokey 2  is free software: you can redistribute it and/or modify
 
7
* it under the terms of the GNU General Public License as published by
 
8
* the Free Software Foundation, either version 3 of the License, or
 
9
* any later version.
 
10
*
 
11
* Nitrokey is distributed in the hope that it will be useful,
 
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
14
* GNU General Public License for more details.
 
15
*
 
16
* You should have received a copy of the GNU General Public License
 
17
* along with Nitrokey. If not, see <http://www.gnu.org/licenses/>.
 
18
*/
 
19
 
 
20
#include "stick20lockfirmwaredialog.h"
 
21
#include "ui_stick20lockfirmwaredialog.h"
 
22
 
 
23
 
 
24
/*******************************************************************************
 
25
 
 
26
 Local defines
 
27
 
 
28
*******************************************************************************/
 
29
 
 
30
/*******************************************************************************
 
31
 
 
32
 External declarations
 
33
 
 
34
*******************************************************************************/
 
35
 
 
36
 
 
37
/*******************************************************************************
 
38
 
 
39
  stick20LockFirmwareDialog
 
40
 
 
41
  Constructor stick20LockFirmwareDialog
 
42
 
 
43
  Reviews
 
44
  Date      Reviewer        Info
 
45
 
 
46
 
 
47
*******************************************************************************/
 
48
 
 
49
 
 
50
stick20LockFirmwareDialog::stick20LockFirmwareDialog(QWidget *parent) :
 
51
    QDialog(parent),
 
52
    ui(new Ui::stick20LockFirmwareDialog)
 
53
{
 
54
    ui->setupUi(this);
 
55
}
 
56
 
 
57
stick20LockFirmwareDialog::~stick20LockFirmwareDialog()
 
58
{
 
59
    delete ui;
 
60
}