remotemgmt_plat/dm_native_notifier_api/inc/DMNativeNotifier.inl
branchRCL_3
changeset 25 b183ec05bd8c
parent 24 13d7c31c74e0
child 26 19bba8228ff0
--- a/remotemgmt_plat/dm_native_notifier_api/inc/DMNativeNotifier.inl	Thu Aug 19 10:44:50 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,24 +0,0 @@
-
-inline CDMNativeNotifier* CDMNativeNotifier::NewL(TUid aOperationId)
-    {  
-    
-    TAny* interface = REComSession::CreateImplementationL( aOperationId
-                                        ,_FOFF (CDMNativeNotifier, iDtor_ID_Key)); 
-    return reinterpret_cast <CDMNativeNotifier*> (interface);
-    
-    }
-
-inline CDMNativeNotifier::~CDMNativeNotifier()
-    {
-    REComSession::DestroyedImplementation (iDtor_ID_Key);    
-    }
-
-inline void CDMNativeNotifier::ListImplementationsL(RImplInfoPtrArray& aImplInfoArray)
-    {
-    _LIT8(KOperationName,"DialogEcom");
-    TEComResolverParams resolverParams;
-    resolverParams.SetDataType(KOperationName());
-    resolverParams.SetWildcardMatch(ETrue);     // Allow wildcard matching
-
-    REComSession::ListImplementationsL(KNotifierInterfaceUid,resolverParams,KRomOnlyResolverUid, aImplInfoArray);
-    }