| 1 |
//---------------------------------------------------------------------------
|
| 2 |
#ifndef cfaceH
|
| 3 |
#define cfaceH
|
| 4 |
//---------------------------------------------------------------------------
|
| 5 |
#include <vcl\Classes.hpp>
|
| 6 |
#include <vcl\Controls.hpp>
|
| 7 |
#include <vcl\StdCtrls.hpp>
|
| 8 |
#include <vcl\Forms.hpp>
|
| 9 |
//---------------------------------------------------------------------------
|
| 10 |
class TFace : public TForm
|
| 11 |
{
|
| 12 |
__published: // IDE-managed Components
|
| 13 |
TListBox *ListBox1;
|
| 14 |
|
| 15 |
TButton *Button1;
|
| 16 |
void __fastcall FormShow(TObject *Sender);
|
| 17 |
void __fastcall Button1Click(TObject *Sender);
|
| 18 |
private: // User declarations
|
| 19 |
public: // User declarations
|
| 20 |
__fastcall TFace(TComponent* Owner);
|
| 21 |
};
|
| 22 |
//---------------------------------------------------------------------------
|
| 23 |
extern TFace *Face;
|
| 24 |
//---------------------------------------------------------------------------
|
| 25 |
#endif
|