aboutsummaryrefslogtreecommitdiff
path: root/include/cru/win/gui/Resource.hpp
blob: 34c4fc1b7ee45eb34a61eb4dd206880e3b867dbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once
#include "Base.hpp"

#include "cru/platform/Resource.hpp"

namespace cru::platform::gui::win {
class CRU_WIN_GUI_API WinNativeResource : public Object,
                                          public virtual IPlatformResource {
 public:
  static String kPlatformId;

 protected:
  WinNativeResource() = default;

 public:
  CRU_DELETE_COPY(WinNativeResource)
  CRU_DELETE_MOVE(WinNativeResource)

  ~WinNativeResource() override = default;

 public:
  String GetPlatformId() const final { return kPlatformId; }
};
}  // namespace cru::platform::gui::win