2016-05-31 03:58:58 +00:00
|
|
|
#pragma once
|
2016-05-19 14:41:06 +00:00
|
|
|
|
|
|
|
#include "modules/base.hpp"
|
|
|
|
|
|
|
|
namespace modules
|
|
|
|
{
|
|
|
|
DefineModule(TextModule, StaticModule)
|
|
|
|
{
|
2016-05-31 03:58:58 +00:00
|
|
|
static constexpr auto FORMAT = "content";
|
2016-05-19 14:41:06 +00:00
|
|
|
|
|
|
|
public:
|
2016-05-31 03:58:58 +00:00
|
|
|
explicit TextModule(const std::string& name);
|
2016-05-19 14:41:06 +00:00
|
|
|
|
|
|
|
std::string get_format();
|
|
|
|
std::string get_output();
|
|
|
|
};
|
|
|
|
}
|