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