Last change
on this file since 219 was 219, checked in by ansari, 26 years ago |
Creation module DPC/SysTools Reza 09/04/99
|
File size:
543 bytes
|
Line | |
---|
1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
2 | // Classe d'initialiseur de module de PEIDA
|
---|
3 |
|
---|
4 | #ifndef PEIDAINIT_H_SEEN
|
---|
5 | #define PEIDAINIT_H_SEEN
|
---|
6 |
|
---|
7 | #include "defs.h"
|
---|
8 |
|
---|
9 | void PrintPeidaVersion(void);
|
---|
10 | double PeidaVersion(void); /* Version + (Revision/1000) */
|
---|
11 |
|
---|
12 | // Classe d''initialisation pour les modules de PEIDA++
|
---|
13 |
|
---|
14 | class PeidaInitiator {
|
---|
15 | private:
|
---|
16 | static int FgInit;
|
---|
17 | public:
|
---|
18 | PeidaInitiator();
|
---|
19 | virtual ~PeidaInitiator();
|
---|
20 | virtual double Version(bool fgprt=true);
|
---|
21 | };
|
---|
22 |
|
---|
23 | #define PeidaInit() PeidaInitiator peidainitiator
|
---|
24 |
|
---|
25 | #endif
|
---|
26 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.