本文整理汇总了C++中GMLGraphBuilder类的典型用法代码示例。如果您正苦于以下问题:C++ GMLGraphBuilder类的具体用法?C++ GMLGraphBuilder怎么用?C++ GMLGraphBuilder使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了GMLGraphBuilder类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: addString
bool addString(const string &st,const string &str) {
if (idSet!=-1) {
if (st==LABEL)
graphBuilder->setNodeValue(idSet,"viewLabel",str);
else
graphBuilder->setNodeValue(idSet, st, str);
}
else
nodeAttributeError();
return true;
}
示例2: addInt
bool addInt(const string &st,const int id) {
if (st==ID) {
bool result=graphBuilder->addNode(id);
if (result) idSet=id;
else return false;
}
else {
if (idSet!=-1)
graphBuilder->setNodeValue(idSet, st, id);
else
nodeAttributeError();
}
return true;
}
示例3: addBool
bool addBool(const string &st,const bool boolean) {
if (edgeOk)
graphBuilder->setEdgeValue(curEdge, st, boolean);
else
edgeAttributeError();
return true;
}
示例4: addDouble
bool addDouble(const string &st,const double real) {
if (edgeOk)
graphBuilder->setEdgeValue(curEdge, st, real);
else
edgeAttributeError();
return true;
}
示例5: setEdgeValue
void setEdgeValue(const LineType::RealType &lCoord) {
graphBuilder->setEdgeValue(curEdge,lCoord);
}
示例6: setCoord
void setCoord(const Coord &coord) {
graphBuilder->setNodeCoordValue(idSet,"viewLayout",coord);
}
示例7: setSize
void setSize(const Size &size) {
graphBuilder->setNodeSizeValue(idSet,"viewSize",size);
}
示例8: setColor
void setColor(const Color &color) {
graphBuilder->setNodeValue(idSet,"viewColor",color);
}