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