onnxruntime/winml/lib/Api/impl/ISequenceFeatureValue.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

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