status-desktop/src-cpp/app/modules/startup/controller_interface.h

19 lines
291 B
C
Raw Normal View History

2022-01-06 19:29:19 +00:00
#pragma once
namespace Modules
{
namespace Startup
{
// Abstract class for any input/interaction with this module.
class ControllerInterface
{
public:
virtual void init() = 0;
2022-01-20 15:50:10 +00:00
virtual bool shouldStartWithOnboardingScreen() = 0;
2022-01-06 19:29:19 +00:00
};
} // namespace Startup
} // namespace Modules