-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit4.h
25 lines (24 loc) · 824 Bytes
/
Unit4.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
//---------------------------------------------------------------------------
#ifndef Unit4H
#define Unit4H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "sGauge.hpp"
#include "sLabel.hpp"
//---------------------------------------------------------------------------
class TForm4 : public TForm
{
__published: // IDE-managed Components
TsGauge *sGauge1;
TsLabel *sLabel1;
private: // User declarations
public: // User declarations
__fastcall TForm4(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm4 *Form4;
//---------------------------------------------------------------------------
#endif