mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-18 16:54:33 +00:00
31 lines
530 B
C++
31 lines
530 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2023 The Monero Project
|
|
|
|
#ifndef FEATHER_CALCWINDOW_H
|
|
#define FEATHER_CALCWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
namespace Ui {
|
|
class CalcWindow;
|
|
}
|
|
|
|
class CalcWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CalcWindow(QWidget *parent = nullptr);
|
|
~CalcWindow() override;
|
|
|
|
signals:
|
|
void closed();
|
|
|
|
private:
|
|
void closeEvent(QCloseEvent *bar) override;
|
|
|
|
private:
|
|
QScopedPointer<Ui::CalcWindow> ui;
|
|
};
|
|
|
|
#endif // FEATHER_CALCWINDOW_H
|