Newer
Older
Import / research / signals-slots / src / core / application.h
@John John on 29 Dec 2020 225 bytes bulk import from macbookpro checkouts
#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