16 lines
478 B
C++
16 lines
478 B
C++
|
|
//---------------------------------------------------------------------
|
||
|
|
#include <vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
|
||
|
|
#include "Unit2.h"
|
||
|
|
//---------------------------------------------------------------------
|
||
|
|
#pragma resource "*.dfm"
|
||
|
|
TfmDialog *fmDialog;
|
||
|
|
//---------------------------------------------------------------------
|
||
|
|
__fastcall TfmDialog::TfmDialog(TComponent* AOwner)
|
||
|
|
: TForm(AOwner)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------
|
||
|
|
|