mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-07 00:13:17 +00:00
* Add experimental winrt api idl with dummy type to satisfy the build * remove experimental from the api_lib target * make experimental api available on windows builds also * remove /y /d * revert some pathing changes * remove experimental api call from tests * revert cppwinrt cmake changes * switch to stdapi Co-authored-by: Sheil Kumar <sheilk@microsoft.com>
22 lines
267 B
C++
22 lines
267 B
C++
#pragma once
|
|
|
|
#include "Dummy.g.h"
|
|
|
|
namespace WINML_EXPERIMENTALP {
|
|
|
|
struct Dummy : DummyT<Dummy>
|
|
{
|
|
Dummy() = default;
|
|
|
|
void Test();
|
|
};
|
|
|
|
}
|
|
|
|
namespace WINML_EXPERIMENTAL::factory_implementation {
|
|
|
|
struct Dummy : DummyT<Dummy, implementation::Dummy>
|
|
{
|
|
};
|
|
|
|
}
|