You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 rivejä
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