Updated copyright information
[be.git] / libbe / command / __init__.py
1 # Copyright (C) 2005-2010 Aaron Bentley and Panometrics, Inc.
2 #                         W. Trevor King <wking@drexel.edu>
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with this program; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 import base
19
20 UserError = base.UserError
21 UnknownCommand = base.UnknownCommand
22 get_command = base.get_command
23 get_command_class = base.get_command_class
24 commands = base.commands
25 Option = base.Option
26 Argument = base.Argument
27 Command = base.Command
28 InputOutput = base.InputOutput
29 StdInputOutput = base.StdInputOutput
30 StringInputOutput = base.StringInputOutput
31 UnconnectedStorageGetter = base.UnconnectedStorageGetter
32 StorageCallbacks = base.StorageCallbacks
33 UserInterface = base.UserInterface
34
35 __all__ = [UserError, UnknownCommand,
36            get_command, get_command_class, commands,
37            Option, Argument, Command,
38            InputOutput, StdInputOutput, StringInputOutput,
39            StorageCallbacks, UnconnectedStorageGetter,
40            UserInterface]