mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-30 03:37:44 +00:00
16 lines
587 B
C
16 lines
587 B
C
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
// Licensed under the MIT License.
|
|||
|
|||
#pragma once
|
|||
|
|||
namespace Windows::AI::MachineLearning {
|
|||
|
|||
/* [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] */ winrt::Windows::AI::MachineLearning::ILearningModelFeatureDescriptor * result) = 0;
|
|||
};
|
|||
|
|||
} // namespace Windows::AI::MachineLearning
|