-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkriging.~h
33 lines (33 loc) · 1.06 KB
/
kriging.~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
//---------------------------------------------------------------------------
#ifndef krigingH
#define krigingH
//---------------------------------------------------------------------------
#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 TkrigingForm : public TForm
{
__published: // IDE-managed Components
TChart *Chart1;
TLineSeries *Series1;
TLineSeries *Series2;
TCheckBox *readyCheckbox;
TEdit *maxiEdit;
TLabel *Label1;
TEdit *stepEdit;
TLabel *Label2;
private: // User declarations
public: // User declarations
__fastcall TkrigingForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TkrigingForm *krigingForm;
//---------------------------------------------------------------------------
#endif