EffectIndexInfoService.h 470 B

1234567891011121314
  1. #ifndef EFFECTINDEXINFOSERVICE_H
  2. #define EFFECTINDEXINFOSERVICE_H
  3. #include "ClassSet.h"
  4. class EffectIndexInfoService
  5. {
  6. public:
  7. EffectIndexInfoService(QObject *parent = nullptr);
  8. int AddEffectIndexInfo(const EffectIndexInfo &effectIndexInfo);
  9. bool UpdateEffectIndexInfo(const EffectIndexInfo &effectIndexInfo);
  10. bool QueryEffectIndexInfoByProjectId(QList<EffectIndexInfo *> *effectIndexInfoList, int projectId);
  11. };
  12. #endif // EFFECTINDEXINFOSERVICE_H