Changeset 10288 for trunk/FACT++
- Timestamp:
- 04/05/11 11:27:01 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/MessageImp.h
r10183 r10288 35 35 int Update(int qos, const char *fmt, ...); 36 36 37 int Debug(const char *txt) { return Update(txt, kDebug); } 37 38 int Message(const char *txt) { return Update(txt, kMessage); } 38 39 int Info(const char *txt) { return Update(txt, kInfo); } … … 41 42 int Fatal(const char *txt) { return Update(txt, kFatal); } 42 43 44 int Debug(const std::string &str) { return Debug(str.c_str()); } 43 45 int Message(const std::string &str) { return Message(str.c_str()); } 44 46 int Info(const std::string &str) { return Info(str.c_str()); } … … 47 49 int Fatal(const std::string &str) { return Fatal(str.c_str()); } 48 50 51 int Debug(const std::stringstream &str) { return Debug(str.str()); } 49 52 int Message(const std::stringstream &str) { return Message(str.str()); } 50 53 int Info(const std::stringstream &str) { return Info(str.str()); }
Note:
See TracChangeset
for help on using the changeset viewer.