-
Notifications
You must be signed in to change notification settings - Fork 0
/
jimie.h
30 lines (29 loc) · 1.06 KB
/
jimie.h
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
27
28
29
30
//---------------------------------------------------------------------------
#ifndef jimieH
#define jimieH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
//---------------------------------------------------------------------------
class Timie : public TForm
{
__published: // IDE-managed Components
TEdit *Edit1;
TBitBtn *BitBtn1;
TListBox *ListBox1;
TSpeedButton *SpeedButton1;
void __fastcall BitBtn1Click(TObject *Sender);
void __fastcall FormActivate(TObject *Sender);
void __fastcall SpeedButton1Click(TObject *Sender);
void __fastcall ListBox1Click(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall Timie(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE Timie *imie;
//---------------------------------------------------------------------------
#endif