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