18 lines
281 B
C++
18 lines
281 B
C++
//
|
|
// Created by selim on 01.10.22.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_APP_H
|
|
#define AUTOCAT_GNOME_APP_H
|
|
|
|
#include "gtkpp/Application.h"
|
|
|
|
class App: public gtkpp::Application {
|
|
public:
|
|
using gtkpp::Application::Application;
|
|
static App& instance();
|
|
};
|
|
|
|
|
|
#endif //AUTOCAT_GNOME_APP_H
|