##// END OF EJS Templates
Added license text to piemodelmapper classes
Added license text to piemodelmapper classes

File last commit:

r1294:6b4eaf123ca6
r1309:62cab2834ea4
Show More
qhbarmodelmapper.cpp
42 lines | 873 B | text/x-c | CppLexer
#include "qhbarmodelmapper.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
QHBarModelMapper::QHBarModelMapper(QObject *parent) :
QBarModelMapper(parent)
{
}
int QHBarModelMapper::firstBarRow() const
{
return QBarModelMapper::firstBarSection();
}
void QHBarModelMapper::setFirstBarRow(int firstBarRow)
{
return QBarModelMapper::setFirstBarSection(firstBarRow);
}
int QHBarModelMapper::lastBarRow() const
{
return QBarModelMapper::lastBarSection();
}
void QHBarModelMapper::setLastBarRow(int lastBarRow)
{
return QBarModelMapper::setLastBarSection(lastBarRow);
}
int QHBarModelMapper::categoriesRow() const
{
return QBarModelMapper::categoriesSection();
}
void QHBarModelMapper::setCategoriesRow(int categoriesRow)
{
return QBarModelMapper::setCategoriesSection(categoriesRow);
}
#include "moc_qhbarmodelmapper.cpp"
QTCOMMERCIALCHART_END_NAMESPACE