TestWinRT/TestComponent/Derived.h

18 строки
372 B
C++

#pragma once
#include "Derived.g.h"
#include "Composable.h"
namespace winrt::TestComponent::implementation
{
struct Derived : DerivedT<Derived, TestComponent::implementation::Composable>
{
Derived() = default;
};
}
namespace winrt::TestComponent::factory_implementation
{
struct Derived : DerivedT<Derived, implementation::Derived>
{
};
}