1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-03 04:33:30 -05:00
polybar/include/modules/text.hpp
2016-05-19 20:23:45 +02:00

20 lines
344 B
C++

#ifndef _MODULES_TEXT_HPP_
#define _MODULES_TEXT_HPP_
#include "modules/base.hpp"
namespace modules
{
DefineModule(TextModule, StaticModule)
{
const char *FORMAT = "content";
public:
TextModule(const std::string& name) throw(UndefinedFormat);
std::string get_format();
std::string get_output();
};
}
#endif