-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit9.h
24 lines (23 loc) · 836 Bytes
/
Unit9.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
//---------------------------------------------------------------------------
#ifndef Unit9H
#define Unit9H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ComCtrls.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TForm9 : public TForm
{
__published: // IDE-managed Components
TProgressBar *ProgressBar1;
private: // User declarations
public: // User declarations
__fastcall TForm9(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm9 *Form9;
//---------------------------------------------------------------------------
#endif