diff -r 4545c04e61e1 -r bcf742120177 bluetoothengine/btnotif/btnotifsrv/src/btnotifserver.cpp --- a/bluetoothengine/btnotif/btnotifsrv/src/btnotifserver.cpp Wed Aug 18 09:59:05 2010 +0300 +++ b/bluetoothengine/btnotif/btnotifsrv/src/btnotifserver.cpp Fri Sep 17 08:30:56 2010 +0300 @@ -23,8 +23,10 @@ #include "btnotifsettingstracker.h" #include "btnotificationmanager.h" #include "btnotifdeviceselector.h" +#include "btnotifgeninfonotifier.h" #include "btnotifserversecpolicy.h" #include "btnotifclientserver.h" +#include "btnotifpowernotifier.h" /** Panic category */ _LIT( KBTNotifPanic, "BTNotif panic" ); @@ -121,6 +123,8 @@ iNotificationMgr = CBTNotificationManager::NewL( this ); iSettingsTracker = CBTNotifSettingsTracker::NewL( this ); iConnectionTracker = CBTNotifConnectionTracker::NewL( this ); + iGenInfoNotifier = CBTNotifGenInfoNotifier::NewL( this ); + iBTPowerNotifier = CBTNotifPowerNotifier::NewL( this ); iTimer = CDeltaTimer::NewL(CActive::EPriorityLow); TCallBack shutdownCb( ShutdownTimeout, this ); iShutdownTimerEntry.Set( shutdownCb ); @@ -160,6 +164,8 @@ delete iSettingsTracker; delete iConnectionTracker; delete iNotificationMgr; + delete iGenInfoNotifier; + delete iBTPowerNotifier; delete iAsyncCb; delete iTimer; delete iDevRep;