null2.hh
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:0k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #ifndef __null2_hh__
  2. #define __null2_hh__
  3. #include "null1.hh"
  4. template <class Type, class Behavior>
  5. inline ostream& operator << (ostream &o, const Null<Type,Behavior> &n) {
  6.   if (n.is_null) return Behavior::null_ostr(o);
  7.   else return o << n.data;
  8. }
  9. #endif