Newer
Older
Import / research / signals-slots / src / core / application.h
@John Ryland John Ryland on 22 Dec 2020 225 bytes import NUC files
#ifndef APPLICATION_H
#define APPLICATION_H


class Application
{
public:
    Application(int argc, char *argv[]);
    ~Application();
    int exec();
    void quit();
};


extern Application *app;


#endif // APPLICATION_H