blob: b0a44b1c2b0ce831c05ed19b9657954f2fac1e29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
// SPDX-License-Identifier: BSD-3-Clause
// mainframe.h : interface of the MainFrame class
//
/////////////////////////////////////////////////////////////////////////////
#ifndef MAINFRAME_H
#define MAINFRAME_H
#include <QMainWindow>
class ChildView;
class MainFrame : public QMainWindow
{
Q_OBJECT
public:
MainFrame(QWidget *parent = 0);
protected Q_SLOTS:
void editOptions();
void helpAbout();
private:
ChildView *view;
};
#endif
|