Rosetta
Classes | Typedefs | Functions | Variables
ui::viewers Namespace Reference

Classes

class  ScoreFileView
 

Typedefs

using ScorePoint = std::map< QString, QString >
 

Functions

QT_CHARTS_USE_NAMESPACE std::pair< std::vector< QString >, std::vector< ScorePoint > > parse_score_file (QByteArray const &file)
 

Variables

static auto QPointF_Less
 

Typedef Documentation

◆ ScorePoint

using ui::viewers::ScorePoint = typedef std::map<QString, QString>

Function Documentation

◆ parse_score_file()

QT_CHARTS_USE_NAMESPACE std::pair<std::vector<QString>, std::vector<ScorePoint> > ui::viewers::parse_score_file ( QByteArray const &  file)

Variable Documentation

◆ QPointF_Less

auto ui::viewers::QPointF_Less
static
Initial value:
= [](QPointF const &lhs, QPointF const &rhs) -> bool {
if( lhs.x() == rhs.x() ) return lhs.y() < rhs.y();
else return lhs.x() < rhs.x();
}