onnxruntime/winml/lib/Api.Experimental/LearningModelSessionExperimental.h
Justin Chu eeef157888
Format c++ code under winml/ (#16660)
winml/ was previously excluded from lintrunner config. This change
includes the directory and adds the clang-format config file specific to
winml/ that fits existing style.

---------

Signed-off-by: Justin Chu <justinchu@microsoft.com>
2023-07-25 21:56:50 -07:00

24 lines
823 B
C++

#pragma once
#include "LearningModelSessionExperimental.g.h"
namespace WINML_EXPERIMENTALP {
struct LearningModelSessionExperimental : LearningModelSessionExperimentalT<LearningModelSessionExperimental> {
LearningModelSessionExperimental(const winml::LearningModelSession& session);
WINML_EXPERIMENTAL::LearningModelSessionOptionsExperimental Options();
private:
winml::LearningModelSession _session;
};
} // namespace WINML_EXPERIMENTALP
namespace WINML_EXPERIMENTAL::factory_implementation {
struct LearningModelSessionExperimental : LearningModelSessionExperimentalT<
LearningModelSessionExperimental,
implementation::LearningModelSessionExperimental> {};
} // namespace WINML_EXPERIMENTAL::factory_implementation