polybar-dwm/include/x11/extensions_fwd.hpp
Michael Carlberg 608519363d feat(xkeyboard): New module
New module that uses the X keyboard extension
to show keyboard layout and indicators.

Ref #84, #200
2016-11-30 10:08:44 +01:00

40 lines
508 B
C++

#pragma once
#include "common.hpp"
namespace xpp {
#if ENABLE_DAMAGE_EXT
namespace damage {
class extension;
}
#endif
#if ENABLE_RANDR_EXT
namespace randr {
class extension;
}
#endif
#if ENABLE_SYNC_EXT
namespace sync {
class extension;
}
#endif
#if ENABLE_RENDER_EXT
namespace render {
class extension;
}
#endif
#if ENABLE_COMPOSITE_EXT
namespace composite {
class extension;
}
#endif
}
POLYBAR_NS
#if ENABLE_XKB_EXT
class xkb_extension;
#endif
POLYBAR_NS_END