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.
22 lines
324 B
C++
22 lines
324 B
C++
#ifndef USERS_H
|
|
#define USERS_H
|
|
#include "imetadataplugin.h"
|
|
#include "userform.h"
|
|
#include "usersui.h"
|
|
|
|
class Users : public IMetaDataPlugin
|
|
{
|
|
public:
|
|
Users();
|
|
|
|
// IMetaDataPlugin interface
|
|
protected:
|
|
void initServiceUi();
|
|
|
|
// IPlugin interface
|
|
public:
|
|
virtual QIcon pluginIcon();
|
|
};
|
|
|
|
#endif // USERS_H
|