diff options
author | George Kiagiadakis <george.kiagiadakis@collabora.co.uk> | 2011-01-04 17:55:27 +0200 |
---|---|---|
committer | George Kiagiadakis <george.kiagiadakis@collabora.co.uk> | 2011-01-04 17:55:27 +0200 |
commit | fff687bc227c6061c2bd2dea1eb9ce3f338542a1 (patch) | |
tree | 85da0574d7f12454be1bf1fb1bc378fc6990eb31 /tests | |
parent | b5263d56a5e0469ce282bf826f46c9366cbe5f2b (diff) |
Add a new QGlib::Interface base class for interfaces and make all interfaces inherit from there.
This will help avoid issues with interface inheritance, since theoretically
it is possible to change interface requirements without breaking ABI in the
C library, but it is not possible to change object inheritance in C++ without
breaking ABI.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/urihandlertest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/urihandlertest.cpp b/tests/auto/urihandlertest.cpp index 755829c..c722e87 100644 --- a/tests/auto/urihandlertest.cpp +++ b/tests/auto/urihandlertest.cpp @@ -16,6 +16,7 @@ */ #include "qgsttest.h" #include <QGst/UriHandler> +#include <QGst/Element> #include <QGst/ElementFactory> class UriHandlerTest : public QGstTest |