当前位置: 首页>>代码示例>>C++>>正文


C++ Poly::setCell方法代码示例

本文整理汇总了C++中Poly::setCell方法的典型用法代码示例。如果您正苦于以下问题:C++ Poly::setCell方法的具体用法?C++ Poly::setCell怎么用?C++ Poly::setCell使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Poly的用法示例。


在下文中一共展示了Poly::setCell方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: changeRow

bool MergeOutputRowOps::changeRow(const RowChange& change) {
  const CompareFlags& flags = getFlags();
  if (!ops.isValid()) {
    SimpleSheetSchema ss;
    if (sheet_name=="") {
      sheet_name = "sheet";
    }
    ss.setSheetName(sheet_name.c_str());
    ss.addColumn("name",ColumnType("TEXT"));
    ss.addColumn("op",ColumnType("TEXT"));
    if (flags.ids.size()>0) {
      ids = flags.ids;
    } else {
      ids = change.allNames;
    }
    for (int i=0; i<(int)ids.size(); i++) {
      ss.addColumn((ids[i] + "0").c_str());
    }
    for (int i=0; i<(int)ids.size(); i++) {
      ss.addColumn((ids[i] + "1").c_str());
    }
    if (getOutputBook()!=NULL) {
      ops = getOutputBook()->provideSheet(ss);
    }
    
    if (!ops.isValid()) {
      fprintf(stderr,"* Could not generate row operations sheet\n");
      exit(1);
      return false;
    }

    ops.deleteData();
  }

  Poly<SheetRow> row = ops.insertRow();
  row->setCell(0,SheetCell(sheet_name.c_str(),false));
  row->setCell(1,SheetCell(change.modeString().c_str(),false));
  int at = 2;
  for (int i=0; i<(int)ids.size(); i++) {
    string id = ids[i];
    if (change.cond.find(id)!=change.cond.end()) {
      row->setCell(at,change.cond.find(id)->second);
    }
    at++;
  }
  for (int i=0; i<(int)ids.size(); i++) {
    string id = ids[i];
    if (change.val.find(id)!=change.val.end()) {
      row->setCell(at,change.val.find(id)->second);
    }
    at++;
  }
  row->flush();

  return true;
}
开发者ID:3615pipou,项目名称:coopy,代码行数:56,代码来源:MergeOutputRowOps.cpp

示例2: save

bool PoolImpl::save() {
  dbg_printf("Save pool\n");
  for (map<string,PoolSlice>::iterator it=pool.begin(); it!=pool.end(); it++) {
    string name = it->first;
    PoolSlice& pool = it->second;
    SimpleSheetSchema schema;
    schema.setSheetName(name.c_str());
    schema.addColumn("local");
    schema.addColumn("remote");
    PolySheet sheet = book.provideSheet(schema);
    sheet.deleteData();
    for (map<string,PoolRecord>::iterator it2 = pool.item.begin();
	 it2 != pool.item.end(); it2++) {
      string from = it2->first;
      SheetCell to = it2->second.cell;
      Poly<SheetRow> row = sheet.insertRow();
      row->setCell(0,SheetCell(from,false)); // fix for escaped cells
      row->setCell(1,to);
      row->flush();
    }
  }

  return true;
}
开发者ID:3615pipou,项目名称:coopy,代码行数:24,代码来源:PoolImpl.cpp


注:本文中的Poly::setCell方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。