Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

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