mirror of
https://github.com/izzy2lost/cpython.git
synced 2026-03-10 11:29:24 -07:00
20 lines
328 B
C++
20 lines
328 B
C++
//
|
|
// Privacy.xaml.h
|
|
// Deklaration der Privacy-Klasse
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "Privacy.g.h"
|
|
|
|
namespace python34app
|
|
{
|
|
[Windows::Foundation::Metadata::WebHostHidden]
|
|
public ref class Privacy sealed
|
|
{
|
|
public:
|
|
Privacy();
|
|
void do_close(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
|
|
};
|
|
}
|