blob: 2ac332cdcdabcd0dae57bf0e661dd3b68214d4a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "../../WinPreConfig.hpp"
#include "cru/common/Base.hpp"
namespace cru::platform::graph::win::direct {
template <typename TInterface>
struct IComResource : virtual Interface {
virtual TInterface* GetComInterface() const = 0;
};
} // namespace cru::platform::graph::win::direct
|