本文整理汇总了C++中vint::push_back方法的典型用法代码示例。如果您正苦于以下问题:C++ vint::push_back方法的具体用法?C++ vint::push_back怎么用?C++ vint::push_back使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vint
的用法示例。
在下文中一共展示了vint::push_back方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: loadInjection
void TestWidget::loadInjection(const QString & file )
{
QString f(":/test/wtr/");
f+=file;
QFile filein(f);
if (!filein.open(QFile::ReadOnly))
qDebug("Nie udane otwarcie pliku: %s",qPrintable(file));
/* for (int i=0;i<11;i++)
{
filein.getline(buffer,1023,'\n'); // pominiecie nag³ówka
//cout<<buffer<<endl;
}
*/
double /*pos, vel,*/p1,p2,p3;
times.clear(); // vint
// velocity.clear(); // vint
press1.clear(); // vint;
press2.clear();
press3.clear();
// position.clear(); //lpair
int time = 0;
QTextStream stream(&filein);
while (!filein.atEnd())
{
///stream>>pos;
stream>>p3;
stream>>p1;
stream>>p2;
//qDebug("Strem %f,%f,%f",p1,p2,p3);
stream.readLine() ; // getline(buffer,1023,'\n'); // eat rest of the line
// filein>>vel;
times.push_back(time);
// position.push_back( pair<double,double>(time,pos));
// velocity.push_back((int)vel);
press1.push_back((int)p1);
press2.push_back((int)p2);
press3.push_back(p3);
//filein>>buffer;
// cout<<time<<" p:"<<pos<<" v:"<<vel<<" p1:"<<p1<<endl; //" "<<p2<<" "<<p3<<endl;
++time;
}
chart->channels().clear();
initCharts();
chart->update();
}