added dummy cvInitSystem() to Qt bindings to avoid "unresolved symbol" errors

This commit is contained in:
Vadim Pisarevsky 2010-06-19 16:26:22 +00:00
parent e78373f4b8
commit 47620085b5

View File

@ -110,6 +110,11 @@ CV_IMPL void cvInformation(const char* name, const char* text, int delayms)
}
CV_IMPL int cvInitSystem( int, char** )
{
return 0;
}
CV_IMPL int cvWaitKey( int arg )
{
int result = -1;