File indexing completed on 2024-04-14 04:38:32

0001 // This is an example not a library
0002 /*
0003     SPDX-FileCopyrightText: 2008 Daniel Nicoletti <dantti85-pk@yahoo.com.br>
0004     SPDX-FileCopyrightText: 2009 Radek Novacek <rnovacek@redhat.com>
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #ifndef PKEXAMPLE_H
0010 #define PKEXAMPLE_H
0011 
0012 #include "ui_PkExample.h"
0013 
0014 class PkExample : public QMainWindow, Ui::PkExample
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     PkExample(QMainWindow *parent = nullptr);
0020     ~PkExample() override;
0021 
0022 private Q_SLOTS:
0023     void activateAction();
0024     void actionActivated();
0025 };
0026 
0027 
0028 #endif