mradio = radio;
}
-
//------------------------------------------------------------------------
double ModelShowNPoints::GetRadio()
{
return mradio;
}
-
//------------------------------------------------------------------------
std::vector<int> ModelShowNPoints::GetLstPointsX()
{
//------------------------------------------------------------------------
std::vector<std::string> ModelShowNPoints::GetLstLabels()
{
- return lstLabels;
+// return lstLabels;
+ std::vector<std::string> tmpLst;
+ int i ,size=lstLabels.size();
+ std::string tmp;
+ for (i=0; i<size; i++)
+ {
+ tmp=lstLabels[i];
+ if (tmp.empty()==true)
+ {
+ tmp="VOID";
+ }
+ tmpLst.push_back( tmp );
+ } // for i
+ return tmpLst;
}
//------------------------------------------------------------------------