Changeset 7823
- Timestamp:
- 07/30/06 17:21:42 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mgui/MHexagon.cc
r7749 r7823 332 332 // Save primitive as a C++ statement(s) on output stream out 333 333 // 334 void MHexagon::SavePrimitive(o fstream &out, Option_t *)334 void MHexagon::SavePrimitive(ostream &out, Option_t *) 335 335 { 336 336 if (gROOT->ClassSaved(Class())) … … 347 347 } 348 348 349 void MHexagon::SavePrimitive(ofstream &out, Option_t *) 350 { 351 MHexagon::SavePrimitive(static_cast<ostream&>(out), ""); 352 } -
trunk/MagicSoft/Mars/mgui/MHexagon.h
r3514 r7823 63 63 virtual void PaintHexagon(Float_t x, Float_t y, Float_t d); 64 64 virtual void Print(Option_t *Option="") const; // *MENU* 65 virtual void SavePrimitive(ostream &out, Option_t *); 65 66 virtual void SavePrimitive(ofstream &out, Option_t *); 66 67 -
trunk/MagicSoft/Mars/mhist/MHCamera.h
r7822 r7823 212 212 213 213 void SavePrimitive(ostream &out, Option_t *); 214 void SavePrimitive(ofstream &out, Option_t *) { MHCamera::SavePrimitive(static_cast<ostream&>(out), ""); }214 void SavePrimitive(ofstream &out, Option_t *); 215 215 Int_t DistancetoPrimitive(Int_t px, Int_t py); 216 216 char *GetObjectInfo(Int_t px, Int_t py) const;
Note:
See TracChangeset
for help on using the changeset viewer.