#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

