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