HhoopeCheungv3.23.3
3c04472f创建于 2023年4月25日历史提交
#include "log4cpp/Manipulator.hh"
using namespace std;
namespace log4cpp {
	ostream& operator<< (ostream& os, const width& w) {
		if  (os.good()) {
			os.width(w.size);
		}
		return os;
	}
	ostream& operator<< (ostream& os, const tab& t) {
		if  (os.good()) {
			for(size_t no = 0; no < t.size; no++) os.put(os.widen('\t'));
		}
		return os;
	}
};