25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

19 satır
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