mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-13 14:42:29 +02:00
10 lines
180 B
C++
10 lines
180 B
C++
#pragma once
|
|
|
|
#include "AModule.hpp"
|
|
|
|
namespace waybar::util {
|
|
|
|
const static auto NOOP = []() {};
|
|
enum class ChangeType : char { Increase, Decrease };
|
|
|
|
} // namespace waybar::util
|