Last change
on this file since 764 was 754, checked in by ansari, 26 years ago |
Restruction de Sophya en modules plus petit (TArray , SkyMap, HiStats, ...)
Reza 2/3/2000
|
File size:
600 bytes
|
Rev | Line | |
---|
[754] | 1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
| 2 | // Classe d'initialiseur de module de SOPHYA
|
---|
| 3 |
|
---|
| 4 | #ifndef SOPHYAINIT_H_SEEN
|
---|
| 5 | #define SOPHYAINIT_H_SEEN
|
---|
| 6 |
|
---|
| 7 | #include "machdefs.h"
|
---|
| 8 |
|
---|
| 9 | namespace SOPHYA {
|
---|
| 10 |
|
---|
| 11 | void PrintSophyaVersion(void);
|
---|
| 12 | double SophyaVersion(void); /* Version + (Revision/1000) */
|
---|
| 13 |
|
---|
| 14 | // Classe d''initialisation pour les modules de PEIDA++
|
---|
| 15 |
|
---|
| 16 | class SophyaInitiator {
|
---|
| 17 | private:
|
---|
| 18 | static int FgInit;
|
---|
| 19 | public:
|
---|
| 20 | SophyaInitiator();
|
---|
| 21 | virtual ~SophyaInitiator();
|
---|
| 22 | virtual double Version(bool fgprt=true);
|
---|
| 23 | };
|
---|
| 24 |
|
---|
| 25 | #define SophyaInit() SophyaInitiator sophyainitiator
|
---|
| 26 |
|
---|
| 27 | } // Fin du namespace
|
---|
| 28 |
|
---|
| 29 | #endif
|
---|
| 30 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.