PyXR

c:\projects\bitpim\src \ phones \ com_othercdma.py



0001 ### BITPIM
0002 ###
0003 ### Copyright (C) 2003-2004 Roger Binns <rogerb@rogerbinns.com>
0004 ###
0005 ### This program is free software; you can redistribute it and/or modify
0006 ### it under the terms of the BitPim license as detailed in the LICENSE file.
0007 ###
0008 ### $Id: com_othercdma.py 2572 2005-10-21 06:07:08Z skyjunky $
0009 
0010 """Communicate with an unsupported Brew phone"""
0011 
0012 import com_phone
0013 import com_brew
0014 import commport
0015 
0016 class Phone(com_phone.Phone, com_brew.BrewProtocol):
0017     "Talk to an unsupported CDMA phone"
0018 
0019     desc="Other CDMA Phone"
0020 
0021     protocolclass=None
0022     
0023     def __init__(self, logtarget, commport):
0024         com_phone.Phone.__init__(self, logtarget, commport)
0025         com_brew.BrewProtocol.__init__(self)
0026 
0027 class Profile(com_phone.Profile):
0028     pass
0029 

Generated by PyXR 0.9.4