#include class TestApp : public Gedeng::Application { public: TestApp() = default; ~TestApp() = default; }; int main() { TestApp *app = new TestApp(); app->run(); delete app; }