Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

19 строки
302 B

  1. #ifndef TESTREPORT_H
  2. #define TESTREPORT_H
  3. #include "GlobalDefine.h"
  4. #include "VisualInspectionResult.h"
  5. class CTestReport
  6. {
  7. public:
  8. CTestReport();
  9. CVisualInspectionResult* GetInspectionResult();
  10. private:
  11. CVisualInspectionResult mVisualInspectionResultReport;
  12. };
  13. #endif // TESTREPORT_H