Herm-Win/ListInit.cpp
2021-09-12 22:25:13 +02:00

23 lines
678 B
C++

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "ListInit.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TAcercaDe *AcercaDe;
//---------------------------------------------------------------------------
__fastcall TAcercaDe::TAcercaDe(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TAcercaDe::Timer1Timer(TObject *Sender)
{
Close();
}
//---------------------------------------------------------------------------