Changeset 440 in Sophya
- Timestamp:
- Sep 26, 1999, 5:49:56 PM (26 years ago)
- Location:
- trunk/SophyaPI
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PI/pi3ddrw.cc
r329 r440 125 125 { 126 126 if (axesFlags == kAxesNone) return; 127 #if defined( __DECCXX) || defined(__KCC__)127 #if defined(CC_HAS_RTTI_SUPPORT) 128 128 PIGraphic3D* g3 = dynamic_cast<PIGraphic3D*>(g); 129 129 #else … … 318 318 list<int>::iterator it; 319 319 for(it = m3DrIl.begin(); it != m3DrIl.end(); it++) 320 #if defined( __DECCXX) || defined(__KCC__)320 #if defined(CC_HAS_RTTI_SUPPORT) 321 321 (dynamic_cast<PIDrawer3D*>(GetDrawerId(*it)))->Set3DView_Obs(xo, yo, zo, teta, phi, psi, dax, day, co, dco); 322 322 #else … … 333 333 list<int>::iterator it; 334 334 for(it = m3DrIl.begin(); it != m3DrIl.end(); it++) 335 #if defined( __DECCXX) || defined(__KCC__)335 #if defined(CC_HAS_RTTI_SUPPORT) 336 336 (dynamic_cast<PIDrawer3D*>(GetDrawerId(*it)))->Set3DView(xc, yc, zc, xo, yo, zo, dax, day, dco, psi); 337 337 #else … … 354 354 list<int>::iterator it = m3DrIl.begin(); 355 355 if (it == m3DrIl.end()) return; 356 #if defined( __DECCXX) || defined(__KCC__)356 #if defined(CC_HAS_RTTI_SUPPORT) 357 357 PIDrawer3D* dr3 = dynamic_cast<PIDrawer3D*>(GetDrawerId(*it)); 358 358 #else … … 380 380 list<int>::iterator it; 381 381 382 #if defined( __DECCXX) || defined(__KCC__)382 #if defined(CC_HAS_RTTI_SUPPORT) 383 383 if (vo) for(it = m3DrIl.begin(); it != m3DrIl.end(); it++) 384 384 (dynamic_cast<PIDrawer3D*>(GetDrawerId(*it)))->Set3DView_Obs(xo, yo, zo, teta, phi, psi, dax, day, co, dco); -
trunk/SophyaPI/PI/pibwdggen.h
r329 r440 20 20 // Mettre dans cet ordre, sinon g++ a des problemes 21 21 #include <vector> 22 #if defined(__KCC__)23 #include <vector.h>24 #endif25 22 26 23 -
trunk/SophyaPI/PI/picmapgen.cc
r163 r440 2 2 #include <list> 3 3 #include <algorithm> 4 #if defined(__KCC__)5 #include <list.h>6 #include <algorithm.h>7 #endif8 4 #include "pisysdep.h" 9 5 #include PICMAPNTV_H -
trunk/SophyaPI/PI/picmapgen.h
r163 r440 5 5 #include <string> 6 6 #include <string.h> 7 #if defined(__KCC__)8 using std::string ;9 #endif10 11 7 12 8 -
trunk/SophyaPI/PI/picontainergen.cc
r367 r440 242 242 { 243 243 mNCh = 0; 244 mACSup = true; //Suppression automatique des widgets fils au delete244 mACSup = false; // Pas de Suppression automatique des widgets fils au delete 245 245 mPaSup = false; 246 246 mChilds = new (PIWdg* [NCHALGRP]); -
trunk/SophyaPI/PI/pigfname.h
r163 r440 2 2 #define PIGFNAME_H_SEEN 3 3 4 #include "machdefs.h" 4 5 #include <string> 5 #if defined(__KCC__)6 using std::string ;7 #endif8 6 9 7 string PIGetFileName(string = ""); -
trunk/SophyaPI/PI/pipixmapgen.h
r329 r440 10 10 11 11 #include <list> 12 #if defined(__KCC__)13 #include <list.h>14 #endif15 12 16 13 class PIPixmapGen : public PIBaseWdg -
trunk/SophyaPI/PI/pisurfdr.cc
r328 r440 90 90 { 91 91 if (axesFlags == kAxesNone) return; 92 #if defined( __DECCXX) || defined(__KCC__)92 #if defined(CC_HAS_RTTI_SUPPORT) 93 93 PIGraphic3D* g3 = dynamic_cast<PIGraphic3D*>(g); 94 94 #else … … 107 107 if (mArr == NULL) return; 108 108 109 #if defined( __DECCXX) || defined(__KCC__)109 #if defined(CC_HAS_RTTI_SUPPORT) 110 110 PIGraphic3D* g3 = dynamic_cast<PIGraphic3D*>(g); 111 111 #else -
trunk/SophyaPI/PI/pisysdep.h
r316 r440 1 1 #ifndef PISYSDEP_SEEN 2 2 #define PISYSDEP_SEEN 3 4 #include "machdefs.h" 3 5 4 6 #ifdef __MWERKS__ // Macintosh -
trunk/SophyaPI/PI/piwdggen.h
r329 r440 7 7 #define PIWDG_H_SEEN 8 8 9 #include "machdefs.h" 9 10 #include "pimsghandler.h" 10 11 11 12 #include <string> 12 13 #include <list> 13 #if defined(__KCC__)14 using std::string ;15 #include <list.h>16 #endif17 14 18 15 -
trunk/SophyaPI/PI/psfile.h
r382 r440 31 31 32 32 #include <list> 33 #if defined(__KCC__)34 #include <list.h>35 #endif36 33 37 34 enum PIPaperSize { PI_A4 = 1, PI_A3 = 2, PI_A5 = 3, PI_NotDefPaperSize = 0}; -
trunk/SophyaPI/PIext/dlftypes.h
r384 r440 7 7 #define DLFTYPES_H_SEEN 8 8 9 #include "machdefs.h" 9 10 #include <string> 10 11 #include <vector> 11 #if defined(__KCC__)12 using std::string ;13 #include <vector.h>14 #endif15 12 16 13 // ------------ Fonctions pour trace de fonctions -------------- -
trunk/SophyaPI/PIext/nobjmgr.cc
r380 r440 8 8 #include <list> 9 9 #include <map> 10 #if defined(__KCC__)11 using std::string ;12 #include <list.h>13 #include <map.h>14 #endif15 10 16 11 #include "strutil.h" -
trunk/SophyaPI/PIext/nobjmgr.h
r368 r440 13 13 #include <string> 14 14 #include <vector> 15 #if defined(__KCC__)16 using std::string ;17 #include <vector.h>18 #endif19 15 20 16 class NObjMgrAdapter; -
trunk/SophyaPI/PIext/piacmd.h
r361 r440 14 14 #include <map> 15 15 #include <functional> 16 #if defined(__KCC__)17 using std::string ;18 #include <vector.h>19 #include <map.h>20 #include <functional.h>21 #endif22 16 23 17 #include "dlftypes.h" -
trunk/SophyaPI/PIext/piafitting.h
r392 r440 10 10 #include <string> 11 11 #include <vector> 12 #if defined(__KCC__)13 using std::string ;14 #include <vector.h>15 #endif16 12 17 13 #include "anydataobj.h" -
trunk/SophyaPI/PIext/pigfd2.cc
r339 r440 75 75 if(mLAtt!=PI_NotDefLineAtt) SelectErrBar(true,true,true); 76 76 77 #if defined( __DECCXX) || defined(__KCC__)77 #if defined(CC_HAS_RTTI_SUPPORT) 78 78 PIGraphic3D* g3 = dynamic_cast<PIGraphic3D*>(g); 79 79 #else -
trunk/SophyaPI/PIext/pintup3d.cc
r333 r440 98 98 if ( (xK < 0) || (yK < 0) || (zK < 0) ) return; 99 99 100 #if defined( __DECCXX) || defined(__KCC__)100 #if defined(CC_HAS_RTTI_SUPPORT) 101 101 PIGraphic3D* g3 = dynamic_cast<PIGraphic3D*>(g); 102 102 #else -
trunk/SophyaPI/PIext/pistdimgapp.cc
r384 r440 8 8 #include <string> 9 9 #include <vector> 10 #if defined(__KCC__)11 using std::string ;12 #include <vector.h>13 #endif14 15 10 16 11 #include "strutil.h" -
trunk/SophyaPI/PIext/pistdimgapp.h
r374 r440 10 10 #include <map> 11 11 #include <functional> 12 #if defined(__KCC__)13 using std::string ;14 #include <map.h>15 #include <functional.h>16 #endif17 12 18 13 #include "pisysdep.h" -
trunk/SophyaPI/PIext/servnobjm.cc
r368 r440 8 8 #include <list> 9 9 #include <map> 10 #if defined(__KCC__)11 using std::string ;12 #include <list.h>13 #include <map.h>14 #endif15 10 16 11 #include "strutil.h" -
trunk/SophyaPI/PIext/servnobjm.h
r361 r440 12 12 #include <map> 13 13 #include <functional> 14 #if defined(__KCC__)15 using std::string ;16 #include <list.h>17 #include <map.h>18 #include <functional.h>19 #endif20 14 21 15 #include "pdlmgr.h"
Note:
See TracChangeset
for help on using the changeset viewer.