C++ Builder - вопросы программирования

       

Заголовочный файл модуля формы



Листинг 2.6.

Заголовочный файл модуля формы (Amper_1.h)
#ifndef Amper_1H #define Amper_1H #include <Classes.hpp>
#include «Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
class TForml : public TForm { __published: // IDE-managed Components TLabel *Label1; TLabel *Label2; TLabel *Label3; TEdit *Editl; TEdit *Edit2; TButton *Buttonl; TButton *Button2; TLabel *Label4; void__fastcall ButtonlClick(TObject *Sender);
void__fastcall Button2Click(TObject *Sender);
private: // User declarations public: // User declarations __fastcall TForml(TComponent* Owner);
}; extern PACKAGE TForml *Form1; #endif

Содержание раздела