Changeset 4879 for source/ariba/utility/bootstrap/BootstrapManager.cpp
- Timestamp:
- Jul 13, 2009, 5:41:44 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/bootstrap/BootstrapManager.cpp
r4850 r4879 41 41 #include "ariba/utility/bootstrap/modules/multicastdns/MulticastDns.h" 42 42 #include "ariba/utility/bootstrap/modules/periodicbroadcast/PeriodicBroadcast.h" 43 #include "ariba/utility/bootstrap/modules/bluetoothsdp/BluetoothSdp.h" 43 44 44 45 namespace ariba { … … 72 73 module = new PeriodicBroadcast(this); 73 74 break; 75 case BootstrapTypeBluetoothSdp: 76 module = new BluetoothSdp(this); 77 break; 74 78 } 75 79 … … 130 134 } 131 135 136 { // bluetooth sdp 137 RegistrationResult resone = RegistrationSucceeded; 138 resone = registerModule(BootstrapTypeBluetoothSdp); 139 140 if(resone != RegistrationSucceeded) 141 result = resone; 142 } 143 132 144 { // todo 133 145 /* ... */ … … 140 152 unregisterModule(BootstrapTypeMulticastDns); 141 153 unregisterModule(BootstrapTypePeriodicBroadcast); 154 unregisterModule(BootstrapTypeBluetoothSdp); 142 155 /* todo ... */ 143 156
Note:
See TracChangeset
for help on using the changeset viewer.