mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
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>
18 lines
552 B
C++
18 lines
552 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
namespace _winml {
|
|
|
|
// clang-format off
|
|
/* [uuid("529d0bca-4c6c-48c1-9bd3-e1ea2e816348"), feature, contract, object, exclusiveto] */
|
|
MIDL_INTERFACE("529d0bca-4c6c-48c1-9bd3-e1ea2e816348")
|
|
ISequenceFeatureValue : public ::IUnknown {
|
|
public:
|
|
/* [propget] */ virtual HRESULT STDMETHODCALLTYPE get_ElementDescriptor(
|
|
/* [out, retval] */ winml::ILearningModelFeatureDescriptor* result) = 0;
|
|
};
|
|
// clang-format on
|
|
|
|
} // namespace _winml
|