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.
18 lines
258 B
C
18 lines
258 B
C
9 years ago
|
#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();
|
||
|
};
|
||
|
|
||
|
#endif // USERS_H
|