mirror of
https://github.com/polybar/polybar.git
synced 2024-11-03 04:33:30 -05:00
22 lines
348 B
C++
22 lines
348 B
C++
|
#pragma once
|
||
|
|
||
|
// #include "components/builder.hpp"
|
||
|
// #include "components/types.hpp"
|
||
|
|
||
|
#include "modules/meta/base.hpp"
|
||
|
|
||
|
POLYBAR_NS
|
||
|
|
||
|
namespace modules {
|
||
|
template <class Impl>
|
||
|
class static_module : public module<Impl> {
|
||
|
public:
|
||
|
using module<Impl>::module;
|
||
|
|
||
|
void start();
|
||
|
bool build(builder*, string) const;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
POLYBAR_NS_END
|