- Timestamp:
- 06/21/12 17:20:45 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcore/ofits.h
r13999 r14199 10 10 #include <iomanip> 11 11 #include <vector> 12 #include <inttypes.h>13 12 #include <algorithm> 14 13 … … 28 27 class ofits : public ofstream 29 28 { 29 public: 30 30 struct Key 31 31 { … … 204 204 }; 205 205 206 private: 206 207 vector<Key> fKeys; 207 208 … … 332 333 } 333 334 335 bool SetRaw(const string &key, const string &val, const string &comment) 336 { 337 return Set(key, true, val, comment); 338 } 334 339 335 340 bool SetBool(const string &key, bool b, const string &comment="")
Note:
See TracChangeset
for help on using the changeset viewer.