forked from openkylin/ukui-search
11 lines
289 B
C++
11 lines
289 B
C++
|
#include "app-info-table.h"
|
||
|
#include "app-info-table-private.h"
|
||
|
using namespace UkuiSearch;
|
||
|
AppInfoTablePrivate::AppInfoTablePrivate(AppInfoTable *parent) : QObject(parent), q(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
AppInfoTable::AppInfoTable(QObject *parent) : QObject(parent), d(new AppInfoTablePrivate(this))
|
||
|
{
|
||
|
}
|