Package phones :: Module com_othercdma
[hide private]
[frames] | no frames]

Source Code for Module phones.com_othercdma

 1  ### BITPIM 
 2  ### 
 3  ### Copyright (C) 2003-2004 Roger Binns <rogerb@rogerbinns.com> 
 4  ### 
 5  ### This program is free software; you can redistribute it and/or modify 
 6  ### it under the terms of the BitPim license as detailed in the LICENSE file. 
 7  ### 
 8  ### $Id: com_othercdma.py 2572 2005-10-21 06:07:08Z skyjunky $ 
 9   
10  """Communicate with an unsupported Brew phone""" 
11   
12  import com_phone 
13  import com_brew 
14  import commport 
15   
16 -class Phone(com_phone.Phone, com_brew.BrewProtocol):
17 "Talk to an unsupported CDMA phone" 18 19 desc="Other CDMA Phone" 20 21 protocolclass=None 22
23 - def __init__(self, logtarget, commport):
24 com_phone.Phone.__init__(self, logtarget, commport) 25 com_brew.BrewProtocol.__init__(self)
26
27 -class Profile(com_phone.Profile):
28 pass
29