polybar-dwm/include/modules/meta/static_module.inl
2016-11-20 23:04:31 +01:00

16 lines
261 B
C++

POLYBAR_NS
namespace modules {
template <typename Impl>
void static_module<Impl>::start() {
CAST_MOD(Impl)->broadcast();
}
template <typename Impl>
bool static_module<Impl>::build(builder*, string) const {
return true;
}
}
POLYBAR_NS_END