diff options
| author | crupest <crupest@outlook.com> | 2019-06-27 00:18:48 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2019-06-27 00:18:48 +0800 |
| commit | baa7cf141b8121473edceae16c1a20a6d47bd202 (patch) | |
| tree | 9349633a9d0bc286fe29f480bd70e4c2ad1f3075 /include/cru/win/graph/direct/com_resource.hpp | |
| parent | f404a3b2eb7bb9865d0c6f938538899996a53d8c (diff) | |
| download | cru-baa7cf141b8121473edceae16c1a20a6d47bd202.tar.gz cru-baa7cf141b8121473edceae16c1a20a6d47bd202.tar.bz2 cru-baa7cf141b8121473edceae16c1a20a6d47bd202.zip | |
......
Diffstat (limited to 'include/cru/win/graph/direct/com_resource.hpp')
| -rw-r--r-- | include/cru/win/graph/direct/com_resource.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/cru/win/graph/direct/com_resource.hpp b/include/cru/win/graph/direct/com_resource.hpp new file mode 100644 index 00000000..aa2c366b --- /dev/null +++ b/include/cru/win/graph/direct/com_resource.hpp @@ -0,0 +1,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() = 0; +}; +} // namespace cru::platform::graph::win_direct |
