22 lines
559 B
Python
22 lines
559 B
Python
###########################################################################
|
|
# Copyright (C) 2009 by Magnus Ahlberg
|
|
# <magnus.ahlberg@svart-katt.se>
|
|
#
|
|
# Copyright: See COPYING file that comes with this distribution
|
|
#
|
|
###########################################################################
|
|
|
|
class XPLDevice:
|
|
"""A class to manage and xPL device"""
|
|
vendor = ""
|
|
device = ""
|
|
instance = ""
|
|
|
|
def __init__(devicename):
|
|
pass
|
|
|
|
def __init__(vendor, device):
|
|
pass
|
|
|
|
def __init__(vendor, device, instance):
|
|
pass
|