source: Sophya/trunk/SophyaPI/PIext/piinit.cc@ 165

Last change on this file since 165 was 165, checked in by ercodmgr, 27 years ago

Creation du module PIext en regroupant des fichiers de Drawer/Wdg pour
Objets ds PEIDA/Outils++, Images++, ... et des classes de ProgPI,
lie a piapp (PIStdImgApp, NamedObjMgr, ...) Reza 18/12/98

File size: 509 bytes
Line 
1#include "defs.h"
2#include "piinit.h"
3
4
5int PeidaInteractiveInitiator::FgInit = 0;
6
7PeidaInteractiveInitiator::PeidaInteractiveInitiator()
8 : PeidaImagesInitiator()
9{
10 FgInit++;
11 if (FgInit > 1) return;
12
13}
14
15PeidaInteractiveInitiator::~PeidaInteractiveInitiator()
16{
17 FgInit--;
18/* if (FgInit == 0)
19 {
20 } */
21}
22
23// On met un objet initiator en statique, pour les loaders qui savent
24// appeler le constructeur des objets statiques Reza 08/98
25static PeidaInteractiveInitiator pinteractivexxinit;
Note: See TracBrowser for help on using the repository browser.