diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-11 14:56:23 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-11 14:56:23 +0100 |
commit | 3351f1ccc1bcc169b680ff2f4e335a1296a47d67 (patch) | |
tree | b898f84b1b435850b4fce7f5950113b35ac29ce3 /LibGUI/GApplication.h | |
parent | 9483b392274dfc7c4ede8a376c8926601e8aecd9 (diff) | |
download | serenity-3351f1ccc1bcc169b680ff2f4e335a1296a47d67.zip |
Port all apps to GApplication.
Diffstat (limited to 'LibGUI/GApplication.h')
-rw-r--r-- | LibGUI/GApplication.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/LibGUI/GApplication.h b/LibGUI/GApplication.h index eff2c11e22..0a139b2cd2 100644 --- a/LibGUI/GApplication.h +++ b/LibGUI/GApplication.h @@ -7,9 +7,12 @@ class GMenuBar; class GApplication { public: + static GApplication& the(); GApplication(int argc, char** argv); + ~GApplication(); int exec(); + void exit(int); void set_menubar(OwnPtr<GMenuBar>&&); |