#pragma once #include #include "../../Resource.h" namespace cru::platform::gui::xcb { class XcbResource : public Object, public virtual IPlatformResource { public: static String kPlatformId; protected: XcbResource() = default; public: String GetPlatformId() const final { return kPlatformId; } }; class XcbException : public PlatformException { public: using PlatformException::PlatformException; }; } // namespace cru::platform::gui::xcb