-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclassstack.cpp
31 lines (25 loc) · 945 Bytes
/
classstack.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "..\ELI\eli_interface.h"
#include "..\work-functions\MyFunc.h"
#include "main.h"
#include "classstack.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TShowClassStackForm *ShowClassStackForm;
extern ELI_INTERFACE *eIface;
//---------------------------------------------------------------------------
__fastcall TShowClassStackForm::TShowClassStackForm(TComponent* Owner)
: TForm(Owner)
{
Owner = ELIExtIDEForm;
Parent = ELIExtIDEForm;
}
//---------------------------------------------------------------------------
void __fastcall TShowClassStackForm::FormClose(TObject *Sender, TCloseAction &Action)
{
ELIExtIDEForm->MenuShowClassStack->Click();
}
//---------------------------------------------------------------------------