-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvarstack.h
23 lines (22 loc) · 872 Bytes
/
varstack.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//---------------------------------------------------------------------------
#ifndef varstackH
#define varstackH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
//---------------------------------------------------------------------------
class TShowVarStackForm : public TForm
{
__published: // IDE-managed Components
TMemo *Stack;
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private: // User declarations
public: // User declarations
__fastcall TShowVarStackForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TShowVarStackForm *ShowVarStackForm;
//---------------------------------------------------------------------------
#endif