Last change
on this file since 2384 was 913, checked in by ansari, 25 years ago |
Documentation + Modifs mineures (namespace, etc..) - Reza 13/4/2000
|
File size:
637 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 |
|
---|
[913] | 14 | // Classe d''initialisation pour les modules SOPHYA
|
---|
[754] | 15 |
|
---|
[913] | 16 | //! Initializer class for sophya modules
|
---|
[754] | 17 | class SophyaInitiator {
|
---|
| 18 | private:
|
---|
| 19 | static int FgInit;
|
---|
| 20 | public:
|
---|
| 21 | SophyaInitiator();
|
---|
| 22 | virtual ~SophyaInitiator();
|
---|
| 23 | virtual double Version(bool fgprt=true);
|
---|
| 24 | };
|
---|
| 25 |
|
---|
| 26 | #define SophyaInit() SophyaInitiator sophyainitiator
|
---|
| 27 |
|
---|
| 28 | } // Fin du namespace
|
---|
| 29 |
|
---|
| 30 | #endif
|
---|
| 31 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.