21 lines
725 B
C
21 lines
725 B
C
#ifndef HPLUGINDEFINE_H
|
|
#define HPLUGINDEFINE_H
|
|
|
|
#include <QIcon>
|
|
#include <QString>
|
|
|
|
typedef struct _tag_HPLUGIN_INFO
|
|
{
|
|
QString pluId; //插件编号.
|
|
QString pluName; //插件名称.
|
|
QString pluChnName; //插件名称,中文.
|
|
QIcon pluIcon; //插件图标.
|
|
QString pluCategory; //插件类型
|
|
void *pluClass; //插件界面对象(pulgin).
|
|
QString pluVersion; //版本号
|
|
QString pluDeveloper; //开发者
|
|
QString pluDescription; //插件描述
|
|
} HPLUGIN_INFO, *PHPLUGIN_INFO;
|
|
|
|
#endif // HPLUGINDEFINE_H
|