Changeset 1778 in Sophya for trunk/SophyaLib/Samba/datacirclebase.h
- Timestamp:
- Nov 16, 2001, 7:04:15 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/Samba/datacirclebase.h
r1770 r1778 16 16 virtual double getData(double) const = 0; 17 17 virtual void print(ostream&) const= 0; 18 19 // Pour compatibilite avec les autres classes 20 inline void Print(ostream& s) const { print(s); } 18 21 }; 22 23 inline ostream& operator<<(ostream& s, const DataCircleBase& c) 24 { 25 c.Print(s); 26 return s; 27 } 28 19 29 #endif
Note:
See TracChangeset
for help on using the changeset viewer.