qtinternetradio/irqnetworkcontroller/src/irqnetworkcontroller.cpp
changeset 11 f683e24efca3
parent 0 09774dfdd46b
child 14 896e9dbc5f19
equal deleted inserted replaced
8:3b03c28289e6 11:f683e24efca3
    86 {
    86 {
    87     return iBody->getIAPId(aIapId);
    87     return iBody->getIAPId(aIapId);
    88 }
    88 }
    89 
    89 
    90 // ---------------------------------------------------------------------------
    90 // ---------------------------------------------------------------------------
    91 // IRQNetworkController::getAccessPointList()
       
    92 // Returns the list of available access points
       
    93 // @return QStringList &aList specifying the access point names
       
    94 // ---------------------------------------------------------------------------
       
    95 //
       
    96 EXPORT_C void IRQNetworkController::getAccessPointList(QStringList &aList)
       
    97 {
       
    98     iBody->getAccessPointList(aList);
       
    99 }
       
   100 
       
   101 // ---------------------------------------------------------------------------
       
   102 // IRQNetworkController::getApIdList()
       
   103 // Returns the list of iap ids for available access points
       
   104 // @return QList<unsigned long> &aList specifying the iap ids
       
   105 // ---------------------------------------------------------------------------
       
   106 //
       
   107 EXPORT_C void IRQNetworkController::getApIdList(QList<unsigned long> &aList)
       
   108 {
       
   109     iBody->getApIdList(aList);
       
   110 }
       
   111 
       
   112 // ---------------------------------------------------------------------------
       
   113 // IRQNetworkController::getBearerList()
       
   114 // Returns the list of bearer ids for available access points
       
   115 // @return QList<unsigned long> &aList specifying the bearer ids
       
   116 // ---------------------------------------------------------------------------
       
   117 //
       
   118 EXPORT_C void IRQNetworkController::getBearerList(QList<unsigned long> &aList)
       
   119 {
       
   120     iBody->getBearerList(aList);
       
   121 }
       
   122 
       
   123 // ---------------------------------------------------------------------------
       
   124 // IRQNetworkController::getNetworkList()
       
   125 // Returns the list of network ids for available access points
       
   126 // @return QList<unsigned long> &aList specifying the network ids
       
   127 // ---------------------------------------------------------------------------
       
   128 //
       
   129 EXPORT_C void IRQNetworkController::getNetworkList(QList<unsigned long> &aList)
       
   130 {
       
   131     iBody->getNetworkList(aList);
       
   132 }
       
   133 
       
   134 // ---------------------------------------------------------------------------
       
   135 // IRQNetworkController::chooseAccessPoint()
    91 // IRQNetworkController::chooseAccessPoint()
   136 // Configures the Access Point which is used by all the components for network
    92 // Configures the Access Point which is used by all the components for network
   137 // connectivity
    93 // connectivity
   138 // ---------------------------------------------------------------------------
    94 // ---------------------------------------------------------------------------
   139 //
    95 //