24 lines
422 B
C++
24 lines
422 B
C++
//
|
|
// Created by selim on 03.01.2022.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_MAINWINDOW_H
|
|
#define AUTOCAT_GNOME_MAINWINDOW_H
|
|
|
|
#include "../gtkpp/Window.h"
|
|
#include "../gtkpp/Leaflet.h"
|
|
#include "../gtkpp/Button.h"
|
|
|
|
class MainWindow: public gtkpp::Window {
|
|
private:
|
|
gtkpp::Leaflet _leaflet;
|
|
gtkpp::Button _addNumberButton;
|
|
|
|
public:
|
|
explicit MainWindow();
|
|
void showCheckDialog();
|
|
};
|
|
|
|
|
|
#endif //AUTOCAT_GNOME_MAINWINDOW_H
|