mirror of
https://github.com/AskDavis/Casinotest.git
synced 2026-01-08 05:39:47 -08:00
16 lines
258 B
C++
16 lines
258 B
C++
#include "qmlmenutoolbarmodel.h"
|
|
|
|
#include "qmlmenutoolbaritem.h"
|
|
#include <QDebug>
|
|
|
|
QmlMenuToolbarModel::QmlMenuToolbarModel( QObject* a_pParent )
|
|
: QmlListModel( new QmlMenuToolbarItem(), a_pParent )
|
|
{
|
|
}
|
|
|
|
QmlMenuToolbarModel::~QmlMenuToolbarModel()
|
|
{
|
|
|
|
}
|
|
|