AutoCatGnome/gui/MainWindow.h

21 lines
368 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"
class MainWindow: public gtkpp::Window {
private:
gtkpp::Leaflet _leaflet;
public:
explicit MainWindow(std::shared_ptr<gtkpp::Application> app);
};
#endif //AUTOCAT_GNOME_MAINWINDOW_H