23 lines
433 B
C++
23 lines
433 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(std::shared_ptr<gtkpp::Application> app);
|
|
};
|
|
|
|
|
|
#endif //AUTOCAT_GNOME_MAINWINDOW_H
|