aboutsummaryrefslogtreecommitdiff
path: root/include/cru/osx/graphics/quartz/Resource.hpp
blob: b302c84cf3ca4eed839bd995007b4d9c1eb75fdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "cru/osx/Resource.hpp"

namespace cru::platform::graphics::osx::quartz {
class OsxQuartzResource : public platform::osx::OsxResource {
 public:
  CRU_DEFAULT_CONSTRUCTOR_DESTRUCTOR(OsxQuartzResource)
  CRU_DELETE_COPY(OsxQuartzResource)
  CRU_DELETE_MOVE(OsxQuartzResource)

 public:
  String GetPlatformId() const override { return u"OSX Quartz"; }
};
}  // namespace cru::platform::graphics::osx::quartz