gedeng/include/Gedeng/Application.h

18 lines
329 B
C++

#pragma once
namespace Gedeng {
class Application {
public:
Application() = default;
// Virtual since this class will be inherited by user-created applications
virtual ~Application() = default;
void run();
};
// To be defined in client applications
Application *create_application();
} // namespace Gedeng