Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 122223
Collapse All | Expand All

(-)gsmlib-1.11-orig/gsmlib/gsm_map_key.h (-2 / +2 lines)
Lines 78-84 Link Here
78
  // MapKey members
78
  // MapKey members
79
  
79
  
80
  template <class SortedStore>
80
  template <class SortedStore>
81
    bool gsmlib::operator<(const MapKey<SortedStore> &x,
81
    bool operator<(const MapKey<SortedStore> &x,
82
                           const MapKey<SortedStore> &y)
82
                           const MapKey<SortedStore> &y)
83
    {
83
    {
84
      assert(&x._myStore == &y._myStore);
84
      assert(&x._myStore == &y._myStore);
Lines 103-109 Link Here
103
    }
103
    }
104
104
105
  template <class SortedStore>
105
  template <class SortedStore>
106
    bool gsmlib::operator==(const MapKey<SortedStore> &x,
106
    bool operator==(const MapKey<SortedStore> &x,
107
                            const MapKey<SortedStore> &y)
107
                            const MapKey<SortedStore> &y)
108
    {
108
    {
109
      assert(&x._myStore == &y._myStore);
109
      assert(&x._myStore == &y._myStore);
(-)gsmlib-1.11-orig/gsmlib/gsm_me_ta.h (-4 / +4 lines)
Lines 294-301 Link Here
294
    // 3 disable phone receive RF circuits only
294
    // 3 disable phone receive RF circuits only
295
    // 4 disable phone both transmit and receive RF circuits
295
    // 4 disable phone both transmit and receive RF circuits
296
    // 5...127 implementation-defined
296
    // 5...127 implementation-defined
297
    int MeTa::getFunctionalityLevel() throw(GsmException);
297
    int getFunctionalityLevel() throw(GsmException);
298
    void MeTa::setFunctionalityLevel(int level) throw(GsmException);
298
    void setFunctionalityLevel(int level) throw(GsmException);
299
299
300
    // return battery charge status (+CBC):
300
    // return battery charge status (+CBC):
301
    // 0 ME is powered by the battery
301
    // 0 ME is powered by the battery
Lines 389-401 Link Here
389
    void setCallWaitingLockStatus(FacilityClass cl,
389
    void setCallWaitingLockStatus(FacilityClass cl,
390
                                  bool lock)throw(GsmException);
390
                                  bool lock)throw(GsmException);
391
391
392
    void MeTa::setCLIRPresentation(bool enable) throw(GsmException);
392
    void setCLIRPresentation(bool enable) throw(GsmException);
393
    //(+CLIR)
393
    //(+CLIR)
394
    
394
    
395
    // 0:according to the subscription of the CLIR service
395
    // 0:according to the subscription of the CLIR service
396
    // 1:CLIR invocation
396
    // 1:CLIR invocation
397
    // 2:CLIR suppression
397
    // 2:CLIR suppression
398
    int MeTa::getCLIRPresentation() throw(GsmException);
398
    int getCLIRPresentation() throw(GsmException);
399
399
400
    friend class Phonebook;
400
    friend class Phonebook;
401
    friend class SMSStore;
401
    friend class SMSStore;

Return to bug 122223