摘要: 1 #ifndef PRINT_H 2 #define PRINT_H 3 4 #include 5 class ReplaceStdout 6 { 7 public: 8 ReplaceStdout(); 9 ~ReplaceStdout();10 bool isOK() { return _ok; }11 private:12 bool _ok;13 };14 void print(const char* format, ...);15 #endifprint.h 1 #include "print.h" 2 #include 3 #include ... 阅读全文
posted @ 2013-09-23 22:50 国超 阅读(343) 评论(0) 推荐(0) 编辑