-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters.h
25 lines (25 loc) · 919 Bytes
/
parameters.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 parametersH
#define parametersH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
//---------------------------------------------------------------------------
class TparamForm : public TForm
{
__published: // IDE-managed Components
TEdit *toleranceEdit;
TLabel *Label36;
TEdit *tolMaxVelEdit;
TLabel *Label37;
void __fastcall closeBtnClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TparamForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TparamForm *paramForm;
//---------------------------------------------------------------------------
#endif