-
Notifications
You must be signed in to change notification settings - Fork 0
/
structRepr.~h
45 lines (45 loc) · 1.47 KB
/
structRepr.~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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//---------------------------------------------------------------------------
#ifndef structReprH
#define structReprH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Chart.hpp>
#include <ExtCtrls.hpp>
#include <Series.hpp>
#include <TeEngine.hpp>
#include <TeeProcs.hpp>
//---------------------------------------------------------------------------
class TstructReprForm : public TForm
{
__published: // IDE-managed Components
TChart *Chart1;
TLineSeries *Series1;
TLineSeries *Series2;
TLineSeries *Series3;
TLineSeries *Series4;
TEdit *KolConstEdit;
TLabel *Label1;
TEdit *fileNumEdit;
TLabel *Label2;
TChart *Chart2;
TLineSeries *Series5;
TLineSeries *Series6;
TChart *Chart3;
TLineSeries *Series7;
TLineSeries *Series8;
TChart *Chart4;
TLineSeries *Series9;
TLineSeries *Series10;
void __fastcall fitOneBtnClick(TObject *Sender);
void __fastcall fitTwoBtnClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TstructReprForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TstructReprForm *structReprForm;
//---------------------------------------------------------------------------
#endif