28 lines
958 B
C++
28 lines
958 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef Chip02FrameUnitH
|
|
#define Chip02FrameUnitH
|
|
//---------------------------------------------------------------------------
|
|
#include <System.Classes.hpp>
|
|
#include <Vcl.Controls.hpp>
|
|
#include <Vcl.StdCtrls.hpp>
|
|
#include <Vcl.Forms.hpp>
|
|
#include <Vcl.ExtCtrls.hpp>
|
|
#include <Vcl.Mask.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TChip02Frame : public TFrame
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabeledEdit *m_leMinChip;
|
|
TLabeledEdit *m_leMaxChip;
|
|
TLabel *Label1;
|
|
void __fastcall EditChipExit(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TChip02Frame(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TChip02Frame *Chip02Frame;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|