39d3f61497
- use "#pragma once" instead of the regular include guard - fix errors and warnings reported by cppcheck
18 lines
291 B
C++
18 lines
291 B
C++
#pragma once
|
|
|
|
#include "modules/base.hpp"
|
|
|
|
namespace modules
|
|
{
|
|
DefineModule(TextModule, StaticModule)
|
|
{
|
|
static constexpr auto FORMAT = "content";
|
|
|
|
public:
|
|
explicit TextModule(const std::string& name);
|
|
|
|
std::string get_format();
|
|
std::string get_output();
|
|
};
|
|
}
|