48cabf689fbefc7e77cf92cf1fd66a18c6c0796d
[mussorgsky] / src / qml / controller.py
1 # -*- coding: utf-8 -*-
2 import os
3 import sys
4 from PySide import QtCore
5 from PySide import QtGui
6 from PySide import QtDeclarative
7
8
9 class Controller (QtCore.QObject):
10
11     @QtCore.Slot (QtCore.QObject)
12     def albumSelected (self, wrapper):
13         print "Called controller, but nothing to do here yet"
14