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

模拟服务器

开发平台:

C/C++

  1. #include <windows.h>
  2. #include "field_names3.hh"
  3. #include "result2.hh"
  4. void FieldNames::init(const ResUse *res)
  5. {
  6.   int num = res->num_fields();
  7.   reserve(num);
  8.   for (int i = 0; i < num; i++)
  9.   {
  10.       Fields fs = res->fields();
  11.       Field f = fs[i];
  12.       string p(f.name);
  13.       str_to_lwr(p);
  14.       push_back(p);
  15.   }
  16. }
  17. //=================================================================