~pieq/checkbox/add-30suspend-1reboot-cycles-support

« back to all changes in this revision

Viewing changes to checkbox_urwid/urwid_interface.py

  • Committer: Javier Collado
  • Date: 2010-05-20 09:00:22 UTC
  • mto: This revision was merged to the branch mainline in revision 812.
  • Revision ID: javier.collado@canonical.com-20100520090022-x2nfggc13rw70o3u
urwid interface skeleton files added

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# This file is part of Checkbox.
 
3
#
 
4
# Copyright 2008 Canonical Ltd.
 
5
#
 
6
# Checkbox is free software: you can redistribute it and/or modify
 
7
# it under the terms of the GNU General Public License as published by
 
8
# the Free Software Foundation, either version 3 of the License, or
 
9
# (at your option) any later version.
 
10
#
 
11
# Checkbox is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
# GNU General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License
 
17
# along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
from checkbox.user_interface import (UserInterface, ANSWER_TO_STATUS,
 
20
    ALL_ANSWERS, YES_ANSWER, NO_ANSWER, SKIP_ANSWER)
 
21
 
 
22
 
 
23
class UrwidInterface(UserInterface):
 
24
    pass