polybar-dwm/include/modules/text.hpp
Michael Carlberg 39d3f61497 refactor(core): Clean-up
- use "#pragma once" instead of the regular include guard
- fix errors and warnings reported by cppcheck
2016-06-02 01:32:06 +02:00

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();
};
}