Initial commit.

This commit is contained in:
Saleem Edah-Tally
2025-06-28 17:40:42 +02:00
commit ef6f25ef27
52 changed files with 8156 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
/*
* File: PopupTransientWindow.cpp
* Author: Saleem EDAH-TALLY - nmset@yandex.com
* License: CeCILL-C
* Copyright Saleem EDAH-TALLY - © 2017
*
* Created on 3 mars 2017, 19:45
*/
#include "PopupTransientWindow.h"
IMPLEMENT_CLASS ( PopupTransientWindow, wxPopupTransientWindow )
PopupTransientWindow::PopupTransientWindow()
: wxPopupTransientWindow()
{}
PopupTransientWindow::PopupTransientWindow ( wxWindow* parent, int flags )
: wxPopupTransientWindow ( parent, flags )
{}
PopupTransientWindow::~PopupTransientWindow()
{}
void PopupTransientWindow::Dismiss()
{
Destroy();
}