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
268 B
C
18 lines
268 B
C
9 years ago
|
#ifndef COREPLUGIN_H
|
||
|
#define COREPLUGIN_H
|
||
|
|
||
|
#include "imetadataplugin.h"
|
||
|
|
||
|
class CorePlugin : public IMetaDataPlugin
|
||
|
{
|
||
|
public:
|
||
|
CorePlugin();
|
||
|
~CorePlugin();
|
||
|
|
||
|
// IMetaDataPlugin interface
|
||
|
protected:
|
||
|
virtual void initServiceUi();
|
||
|
};
|
||
|
|
||
|
#endif // COREPLUGIN_H
|