File: FormHelp.h

package info (click to toggle)
ulcc 1.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,420 kB
  • sloc: cpp: 852; xml: 23; sh: 17; makefile: 6
file content (21 lines) | stat: -rw-r--r-- 297 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef FORMHELP_H
#define FORMHELP_H

#include <QDialog>

namespace Ui {
class FormHelp;
}

class FormHelp : public QDialog {
    Q_OBJECT

    public:
        explicit FormHelp(QWidget *parent = nullptr);
        ~FormHelp();

    private:
        Ui::FormHelp *ui;
    };

#endif // FORMHELP_H