1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #include "StdAfx.h"
- #include "LocateTestExport.h"
- #include "SmartEvaluationLogicDLL.h"
- #include "LocateTester.h"
- CLocateTestExport::CLocateTestExport(void)
- {
- tester = new CLocateTester();
- }
- CLocateTestExport::~CLocateTestExport(void)
- {
- delete tester;
- }
- bool CLocateTestExport::getTestResult( std::string &error_msg )
- {
- return tester->getTestResult(error_msg);
- }
- bool CLocateTestExport::test( const schema::SCHEMA& schema,const std::vector<std::string>& img_paths )
- {
- return tester->test(schema,img_paths);
- }
- bool CLocateTestExport::isResultOk()
- {
- return tester->isResultOk();
- }
- bool CLocateTestExport::isSameSchema( const schema::SCHEMA& schema )
- {
- return tester->isSameLocateSchema(schema);
- }
- bool CLocateTestExport::isReady()
- {
- return tester->isReady();
- }
|