~xibo-maintainers/xibo/encke

« back to all changes in this revision

Viewing changes to client/python/plugins/transitions/DefaultTransition.py

  • Committer: Alex Harrington
  • Date: 2009-12-31 11:18:05 UTC
  • mfrom: (23.7.179 xibo-python)
  • Revision ID: alex@longhill.org.uk-20091231111805-qgth66i4w87rxyuc
[pyclient] Merged in development version 1.1.0a19

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
# -*- coding: utf-8 -*-
 
3
 
 
4
#
 
5
# Xibo - Digitial Signage - http://www.xibo.org.uk
 
6
# Copyright (C) 2009 Alex Harrington
 
7
#
 
8
# This file is part of Xibo.
 
9
#
 
10
# Xibo is free software: you can redistribute it and/or modify
 
11
# it under the terms of the GNU Affero General Public License as published by
 
12
# the Free Software Foundation, either version 3 of the License, or
 
13
# any later version. 
 
14
#
 
15
# Xibo is distributed in the hope that it will be useful,
 
16
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
# GNU Affero General Public License for more details.
 
19
#
 
20
# You should have received a copy of the GNU Affero General Public License
 
21
# along with Xibo.  If not, see <http://www.gnu.org/licenses/>.
 
22
#
 
23
 
 
24
from XiboTransition import XiboTransition
 
25
from threading import Thread, Semaphore
 
26
 
 
27
class DefaultTransition(XiboTransition):
 
28
    "Abstract Class - Interface for Transitions"
 
29
 
 
30
    def run(self):
 
31
        self.callback()