1 |
|
5 |
//---------------------------------------------------------------------------
|
2 |
|
|
|
3 |
|
|
#ifndef logH
|
4 |
|
|
#define logH
|
5 |
|
|
//---------------------------------------------------------------------------
|
6 |
|
|
#include <Classes.hpp>
|
7 |
|
|
#include <Controls.hpp>
|
8 |
|
|
#include <StdCtrls.hpp>
|
9 |
|
|
#include <Forms.hpp>
|
10 |
|
|
//---------------------------------------------------------------------------
|
11 |
|
|
class Twinlog : public TForm
|
12 |
|
|
{
|
13 |
|
|
__published: // IDE-managed Components
|
14 |
|
|
TMemo *Memo1;
|
15 |
|
|
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
|
16 |
|
|
private: // User declarations
|
17 |
|
|
public: // User declarations
|
18 |
|
|
__fastcall Twinlog(TComponent* Owner);
|
19 |
|
|
void ajouter(char *mess);
|
20 |
|
|
};
|
21 |
|
|
//---------------------------------------------------------------------------
|
22 |
|
|
extern PACKAGE Twinlog *winlog;
|
23 |
|
|
//---------------------------------------------------------------------------
|
24 |
|
|
#endif
|