status-desktop/src-cpp/app/modules/main/interfaces/controller_interface.h

15 lines
249 B
C++

#ifndef ICONTROLLER_H
#define ICONTROLLER_H
namespace Modules::Main
{
// Abstract class for any input/interaction with this module.
class IController
{
public:
virtual void init() = 0;
};
} // namespace Modules::Main
#endif // ICONTROLLER_H