-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparamstack.h
23 lines (22 loc) · 884 Bytes
/
paramstack.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 paramstackH
#define paramstackH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
//---------------------------------------------------------------------------
class TShowParamStackForm : public TForm
{
__published: // IDE-managed Components
TMemo *Stack;
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private: // User declarations
public: // User declarations
__fastcall TShowParamStackForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TShowParamStackForm *ShowParamStackForm;
//---------------------------------------------------------------------------
#endif