mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
36 lines
468 B
C++
36 lines
468 B
C++
#pragma once
|
|
|
|
#include "common.hpp"
|
|
|
|
namespace xpp {
|
|
#if WITH_XDAMAGE
|
|
namespace damage {
|
|
class extension;
|
|
}
|
|
#endif
|
|
#if WITH_XRANDR
|
|
namespace randr {
|
|
class extension;
|
|
}
|
|
#endif
|
|
#if WITH_XSYNC
|
|
namespace sync {
|
|
class extension;
|
|
}
|
|
#endif
|
|
#if WITH_XRENDER
|
|
namespace render {
|
|
class extension;
|
|
}
|
|
#endif
|
|
#if WITH_XCOMPOSITE
|
|
namespace composite {
|
|
class extension;
|
|
}
|
|
#endif
|
|
#if WITH_XKB
|
|
namespace xkb {
|
|
class extension;
|
|
}
|
|
#endif
|
|
}
|