#include "App.hpp" #include "utils/utils.hpp" App::App() { utils::debugPrint(__FUNCTION__, __LINE__, "App constructor."); init(); } void App::init() { utils::debugPrint(__FUNCTION__, __LINE__, "Init app."); } int App::run() { utils::debugPrint(__FUNCTION__, __LINE__, "Run app."); return 0; }