Files
s7/Resources/Utilities/PopupTransientWindow.cpp

30 lines
591 B
C++
Raw Normal View History

2025-06-28 17:40:42 +02:00
/*
* 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();
}