mirror of
https://github.com/polybar/polybar.git
synced 2024-11-03 04:33:30 -05:00
20 lines
344 B
C++
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
|