Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2218 sbetterm 1
//---------------------------------------------------------------------------
2
 
3
#ifndef ParameterScopeH
4
#define ParameterScopeH
5
//---------------------------------------------------------------------------
6
#include <Classes.hpp>
7
#include <Controls.hpp>
8
#include <StdCtrls.hpp>
9
#include <Forms.hpp>
10
#include <Buttons.hpp>
11
//---------------------------------------------------------------------------
12
class TParameterScopeForm : public TForm
13
{
14
__published:	// IDE-managed Components
15
	TBitBtn *BitBtn1;
16
	TBitBtn *BitBtn2;
17
	TBitBtn *BitBtn3;
18
	void __fastcall BitBtn1Click(TObject *Sender);
19
	void __fastcall BitBtn2Click(TObject *Sender);
20
	void __fastcall BitBtn3Click(TObject *Sender);
21
 
22
private:	// User declarations
23
	unsigned short m_Scope;
24
 
25
public:		// User declarations
26
	__fastcall TParameterScopeForm(TComponent* Owner);
27
 
28
	unsigned short getScope();
29
};
30
//---------------------------------------------------------------------------
31
extern PACKAGE TParameterScopeForm *ParameterScopeForm;
32
//---------------------------------------------------------------------------
33
#endif