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

模拟服务器

开发平台:

C/C++

  1. #ifndef __fields2_hh__
  2. #define __fields2_hh__
  3. //-----------------------------------------------------------------
  4. inline Fields::size_type Fields::size() const
  5. {
  6.        return res->num_fields();
  7. }
  8. //-----------------------------------------------------------------
  9. inline const Field& Fields::operator [] (Fields::size_type i) const
  10. {
  11.     res->field_seek(i);
  12.     return res->fetch_field();
  13. }
  14. //-----------------------------------------------------------------
  15. #endif