Add the module qvariant_converter.py that abstracts the user from the qvariant_conver...
[bertos.git] / wizard / qvariant_converter.py
1 #!/usr/bin/env python
2 # encoding: utf-8
3 #
4 # Copyright 2009 Develer S.r.l. (http://www.develer.com/)
5 # All rights reserved.
6 #
7 # $Id:$
8 #
9 # Author: Lorenzo Berni <duplo@develer.com>
10 #
11
12 from PyQt4.QtCore import PYQT_VERSION_STR
13
14 if PYQT_VERSION_STR > "4.4.3":
15     from qvariant_converter_new import *
16 else:
17     from qvariant_converter_old import *