コード例 #1
0
ファイル: pointsets.cpp プロジェクト: crayxt/digitizer
PointSetStyle PointSets::measureStyle(QString name)
{
  PointSet* pointSet = findMeasure(name);
  ASSERT_ENGAUGE(pointSet != 0);
  return pointSet->style();
}
コード例 #2
0
ファイル: pointsets.cpp プロジェクト: crayxt/digitizer
PointSetStyle PointSets::curveStyle(QString name)
{
  PointSet* pointSet = findCurve(name);
  ASSERT_ENGAUGE(pointSet != 0);
  return pointSet->style();
}