/
DmitryBar
/
computer_modeling
Обзор
Документация
Войти
/
DmitryBar
/
computer_modeling
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Lab1/source/fAbout.h
24 строки
848 B
Dmitry
Выполнение первой лабораторной работы
17 окт 2024, 13:08
17 окт 2024, 13:08
569e597
Код
Авторство
О чём код?
//--------------------------------------------------------------------------- #ifndef fAboutH #define fAboutH //--------------------------------------------------------------------------- #include <System.Classes.hpp> #include <Vcl.Controls.hpp> #include <Vcl.StdCtrls.hpp> #include <Vcl.Forms.hpp> //--------------------------------------------------------------------------- class TFormAbout : public TForm { __published: // IDE-managed Components TMemo *Memo1; TButton *ButtonClose; void __fastcall ButtonCloseClick(TObject *Sender); private: // User declarations public: // User declarations __fastcall TFormAbout(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TFormAbout *FormAbout; //--------------------------------------------------------------------------- #endif