mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-25 22:26:24 +00:00
16 lines
No EOL
566 B
C++
16 lines
No EOL
566 B
C++
// Copyright (c) Microsoft Corporation.
|
|
// 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
|