smartCARD/SerieCfg.cpp
2021-09-12 20:55:27 +02:00

27 lines
874 B
C++

//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "SerieCfg.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TSerieConf *SerieConf;
//---------------------------------------------------------------------------
__fastcall TSerieConf::TSerieConf(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TSerieConf::cancelarClick(TObject *Sender)
{
ModalResult = mrCancel;
}
//---------------------------------------------------------------------------
void __fastcall TSerieConf::aceptarClick(TObject *Sender)
{
ModalResult = mrOk;
}
//---------------------------------------------------------------------------