unit X11_Colormaps; interface uses X11_Objects; type IColormap = interface(X11_Objects.IObject) end; TColormap = class(X11_Objects.TObject, IColormap, X11_Objects.IObject, IInterface) end; implementation end.