ukui-search/libsearch/appdata/app-info-table.h

36 lines
871 B
C
Raw Normal View History

2022-03-01 17:39:53 +08:00
#ifndef APPINFOTABLE_H
#define APPINFOTABLE_H
#include <QObject>
namespace UkuiSearch {
class AppInfoTablePrivate;
/**
* @brief The AppInfoTable class
* TODO:
* 1.
* 2.
* 3.
* 4.
* 5.
* 6.
* 7.
* 8.
* 9.
*
*/
class AppInfoTable : public QObject
{
Q_OBJECT
public:
explicit AppInfoTable(QObject *parent = nullptr);
AppInfoTable(AppInfoTable &) = delete;
AppInfoTable &operator =(const AppInfoTable &) = delete;
private:
AppInfoTablePrivate *d;
};
}
#endif // APPINFOTABLE_H