jay/module/module.h

21 lines
302 B
C
Raw Permalink Normal View History

2025-03-02 21:33:22 +02:00
// SPDX-FileCopyrightText: 2024 Yury Gubich <blue@macaw.me>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
2025-03-03 21:36:02 +02:00
#include <string>
namespace Module {
2025-03-02 21:33:22 +02:00
class Module {
protected:
Module();
2025-03-03 21:36:02 +02:00
virtual void message(const std::string& text) = 0;
2025-03-02 21:33:22 +02:00
public:
virtual ~Module() noexcept;
};
2025-03-03 21:36:02 +02:00
}