Commit 47620085 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

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

parent e78373f4
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment