blob: b55da43a7c7bfdbb00b94c6329e90766b3bc0658 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
#pragma once
#include "Base.hpp"
#include "cru/common/Base.hpp"
#include "cru/common/String.hpp"
#include <string_view>
namespace cru::platform {
struct CRU_PLATFORM_API IPlatformResource : virtual Interface {
  CRU_DEFAULT_CONSTRUCTOR_DESTRUCTOR(IPlatformResource)
  virtual String GetPlatformId() const = 0;
};
}  // namespace cru::platform
 
  |