﻿// C++/WinRT v1.0.180821.2

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#pragma once
#include "winrt/impl/Windows.Graphics.Effects.0.h"

WINRT_EXPORT namespace winrt::Windows::Graphics::Effects {

struct WINRT_EBO IGraphicsEffect :
    Windows::Foundation::IInspectable,
    impl::consume_t<IGraphicsEffect>,
    impl::require<IGraphicsEffect, Windows::Graphics::Effects::IGraphicsEffectSource>
{
    IGraphicsEffect(std::nullptr_t = nullptr) noexcept {}
};

struct WINRT_EBO IGraphicsEffectSource :
    Windows::Foundation::IInspectable,
    impl::consume_t<IGraphicsEffectSource>
{
    IGraphicsEffectSource(std::nullptr_t = nullptr) noexcept {}
};

}
