Some more thoughts
This commit is contained in:
parent
b997972ec1
commit
bc2dc9bf07
18 changed files with 146 additions and 42 deletions
|
@ -3,10 +3,18 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace Module {
|
||||
|
||||
class Module {
|
||||
protected:
|
||||
Module();
|
||||
|
||||
virtual void message(const std::string& text) = 0;
|
||||
|
||||
public:
|
||||
virtual ~Module() noexcept;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue