source: Sophya/trunk/SophyaLib/BaseTools/sophyainit.h@ 764

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
Line 
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
9namespace SOPHYA {
10
11void PrintSophyaVersion(void);
12double SophyaVersion(void); /* Version + (Revision/1000) */
13
14// Classe d''initialisation pour les modules de PEIDA++
15
16class SophyaInitiator {
17private:
18 static int FgInit;
19public:
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.