25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
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