mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
19 lines
327 B
C++
19 lines
327 B
C++
|
|
#include "pch.h"
|
|||
|
|
#include "App.h"
|
|||
|
|
#include "App.g.cpp"
|
|||
|
|
using namespace winrt;
|
|||
|
|
using namespace Windows::UI::Xaml;
|
|||
|
|
namespace winrt::PowerRenameUILib::implementation
|
|||
|
|
{
|
|||
|
|
App::App()
|
|||
|
|
{
|
|||
|
|
Initialize();
|
|||
|
|
AddRef();
|
|||
|
|
m_inner.as<::IUnknown>()->Release();
|
|||
|
|
}
|
|||
|
|
App::~App()
|
|||
|
|
{
|
|||
|
|
Close();
|
|||
|
|
}
|
|||
|
|
}
|