-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructRepr.cpp
More file actions
27 lines (24 loc) · 892 Bytes
/
structRepr.cpp
File metadata and controls
27 lines (24 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "structRepr.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TstructReprForm *structReprForm;
//---------------------------------------------------------------------------
__fastcall TstructReprForm::TstructReprForm(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TstructReprForm::fitOneBtnClick(TObject *Sender)
{
int i=1;
}
//---------------------------------------------------------------------------
void __fastcall TstructReprForm::fitTwoBtnClick(TObject *Sender)
{
int i=1;
}
//---------------------------------------------------------------------------