blob: a16a9dbd99f90ca262a48ae287c9739641264d8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include "Base.h"
#include "cru/base/Base.h"
#include "cru/base/String.h"
namespace cru::platform {
struct CRU_PLATFORM_API IPlatformResource : virtual Interface {
CRU_DEFAULT_CONSTRUCTOR_DESTRUCTOR(IPlatformResource)
virtual String GetPlatformId() const = 0;
virtual String GetDebugString() { return String(); }
virtual std::string GetPlatformIdUtf8() const;
};
} // namespace cru::platform
|