Revision 2, 0.9 kB
(checked in by yumileroy, 17 years ago)
|
[svn] * Proper SVN structure
Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00
|
Rev | Line | |
---|
[2] | 1 | //--------------------------------------------------------------------------- |
---|
| 2 | |
---|
| 3 | #ifndef TitleFrmH |
---|
| 4 | #define TitleFrmH |
---|
| 5 | //--------------------------------------------------------------------------- |
---|
| 6 | #include <Classes.hpp> |
---|
| 7 | #include <Controls.hpp> |
---|
| 8 | #include <StdCtrls.hpp> |
---|
| 9 | #include <Forms.hpp> |
---|
| 10 | //--------------------------------------------------------------------------- |
---|
| 11 | class TFrmTitle : public TForm |
---|
| 12 | { |
---|
| 13 | __published: // IDE-managed Components |
---|
| 14 | TLabel *Label1; |
---|
| 15 | TEdit *edTitle; |
---|
| 16 | TButton *Button1; |
---|
| 17 | TButton *Button2; |
---|
| 18 | void __fastcall Button1Click(TObject *Sender); |
---|
| 19 | void __fastcall Button2Click(TObject *Sender); |
---|
| 20 | private: // User declarations |
---|
| 21 | public: // User declarations |
---|
| 22 | __fastcall TFrmTitle(TComponent* Owner); |
---|
| 23 | }; |
---|
| 24 | //--------------------------------------------------------------------------- |
---|
| 25 | extern PACKAGE TFrmTitle *FrmTitle; |
---|
| 26 | //--------------------------------------------------------------------------- |
---|
| 27 | #endif |
---|