From 8ad2966933957ac5d6ff8dcd5e732736fd5e4dc6 Mon Sep 17 00:00:00 2001 From: crupest Date: Sun, 15 May 2022 14:08:06 +0800 Subject: ... --- include/cru/osx/graphics/quartz/Font.h | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 include/cru/osx/graphics/quartz/Font.h (limited to 'include/cru/osx/graphics/quartz/Font.h') diff --git a/include/cru/osx/graphics/quartz/Font.h b/include/cru/osx/graphics/quartz/Font.h deleted file mode 100644 index 50703dfe..00000000 --- a/include/cru/osx/graphics/quartz/Font.h +++ /dev/null @@ -1,27 +0,0 @@ -#pragma once -#include "Resource.h" -#include "cru/common/Base.h" -#include "cru/platform/graphics/Font.h" - -#include - -namespace cru::platform::graphics::osx::quartz { -class OsxCTFont : public OsxQuartzResource, public virtual IFont { - public: - OsxCTFont(IGraphicsFactory* graphics_factory, const String& name, float size); - - CRU_DELETE_COPY(OsxCTFont) - CRU_DELETE_MOVE(OsxCTFont) - - ~OsxCTFont() override; - - CTFontRef GetCTFont() const { return ct_font_; } - - String GetFontName() override; - float GetFontSize() override; - - private: - String name_; - CTFontRef ct_font_; -}; -} // namespace cru::platform::graphics::osx::quartz -- cgit v1.2.3