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

21 lines
293 B
C
Raw Normal View History

2022-01-20 14:48:57 +00:00
#pragma once
#include <stdexcept>
namespace Modules
{
namespace Main
{
// Abstract class for any input/interaction with this module.
class ControllerInterface
{
public:
virtual void init()
{
throw std::domain_error("Not implemented");
}
};
} // namespace Main
} // namespace Modules