mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
25 lines
439 B
C++
25 lines
439 B
C++
#ifndef METATABLE_H
|
|
#define METATABLE_H
|
|
|
|
// hyperion
|
|
#include <db/DBManager.h>
|
|
|
|
///
|
|
/// @brief meta table specific database interface
|
|
///
|
|
class MetaTable : public DBManager
|
|
{
|
|
|
|
public:
|
|
/// construct wrapper with plugins table and columns
|
|
explicit MetaTable(QObject* parent = nullptr);
|
|
|
|
///
|
|
/// @brief Get the uuid, if the uuid is not set it will be created
|
|
/// @return The uuid
|
|
///
|
|
QString getUUID() const;
|
|
};
|
|
|
|
#endif // METATABLE_H
|