Changeset 10508
- Timestamp:
- 05/02/11 18:58:57 (14 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/MessageImp.cc
r10429 r10508 147 147 //! Format string according to which the text is formatted 148 148 // 149 /* 149 150 int MessageImp::Update(int severity, const char *fmt, ...) 150 151 { … … 155 156 return Update(str, severity); 156 157 } 158 */ -
trunk/FACT++/src/MessageImp.h
r10399 r10508 35 35 int Update(const char *txt, int qos=kInfo) { return Update(std::string(txt), qos); } 36 36 int Update(const std::stringstream &str, int qos=kInfo) { return Update(str.str(), qos); } 37 int Update(int qos, const char *fmt, ...);37 // int Update(int qos, const char *fmt, ...); 38 38 39 39 int Debug(const std::string &str) { return Update(str, kDebug); }
Note:
See TracChangeset
for help on using the changeset viewer.