You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
742 B
C
31 lines
742 B
C
9 years ago
|
#ifndef PERMISSIONSERVICE_H
|
||
|
#define PERMISSIONSERVICE_H
|
||
|
|
||
|
#include "service.h"
|
||
|
#include "permission.h"
|
||
|
#include "core-odb.hxx"
|
||
|
#include "core_global.h"
|
||
|
#include <odb/core.hxx>
|
||
|
#include <odb/database.hxx>
|
||
|
#include <odb/query.hxx>
|
||
|
#include <odb/result.hxx>
|
||
|
|
||
|
#include <QList>
|
||
|
#include <QSharedPointer>
|
||
|
#include <QString>
|
||
|
|
||
|
typedef odb::query<Permission> permQuery;
|
||
|
typedef odb::result<Permission> permResult;
|
||
|
|
||
|
class CORESHARED_EXPORT PermissionService : public Service<Permission>
|
||
|
{
|
||
|
public:
|
||
|
PermissionService();
|
||
|
~PermissionService();
|
||
|
|
||
|
QList<QSharedPointer<Permission> > forPlugin(const QString &pluginId);
|
||
|
QSharedPointer<Permission> forNameAndPlugin(const QString &name, const QString &pluginId);
|
||
|
};
|
||
|
|
||
|
#endif // PERMISSIONSERVICE_H
|