15 lines
502 B
C
15 lines
502 B
C
#ifndef PLUGINCODE_H
|
|
#define PLUGINCODE_H
|
|
|
|
enum ePluginCode
|
|
{
|
|
ePluginCode_Base = 0,
|
|
ePluginCode_MediaXPlayer, // 采集回放(媒体播放器)
|
|
ePluginCode_Calculator_SystemTask, // 计算器:系统任务算法指标计算
|
|
ePluginCode_ImageQualityAssessor, // 图像质量评估
|
|
ePluginCode_CommunicationInterface, // 通信接口设置
|
|
ePluginCode_ComAssist, // 串口助手
|
|
};
|
|
|
|
#endif // PLUGINCODE_H
|