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
362 B
C++
22 lines
362 B
C++
#ifndef COREPLUGIN_H
|
|
#define COREPLUGIN_H
|
|
|
|
#include "imetadataplugin.h"
|
|
|
|
class CorePlugin : public IMetaDataPlugin
|
|
{
|
|
public:
|
|
CorePlugin();
|
|
~CorePlugin() override = default;
|
|
|
|
// IMetaDataPlugin interface
|
|
protected:
|
|
void initServiceUi() override;
|
|
|
|
// IPlugin interface
|
|
public:
|
|
QTranslator *translator() override;
|
|
};
|
|
|
|
#endif // COREPLUGIN_H
|