1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/include/x11/extensions_fwd.hpp

37 lines
499 B
C++
Raw Normal View History

#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
#if ENABLE_XKB_EXT
2016-11-30 05:29:41 -05:00
namespace xkb {
class extension;
}
#endif
2016-11-30 05:29:41 -05:00
}