emailservices/emailclientapi/src/implproxy.cpp
branchRCL_3
changeset 25 3533d4323edc
parent 24 d189ee25cf9d
--- a/emailservices/emailclientapi/src/implproxy.cpp	Tue Aug 31 15:04:17 2010 +0300
+++ b/emailservices/emailclientapi/src/implproxy.cpp	Wed Sep 01 12:28:57 2010 +0100
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). 
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of "Eclipse Public License v1.0"
@@ -16,14 +16,14 @@
 */
 
 #include "emailclientapiimpl.hrh"
-#include "emailclientapiimpl.h"
+#include "emailclientapiimpl.h"  
 #include "emailinterfacefactoryimpl.h"
-#include <implementationproxy.h>	//TImplementationProxy
+#include <ecom/implementationproxy.h>	//TImplementationProxy
 
-// -----------------------------------------------------------------------------
-// Defines the pairing required by the ECOM framework to correctly identify the
-// instantiation method pointer for client's request.
-// -----------------------------------------------------------------------------
+/**
+ * Defines the pairing required by the ECOM framework to correctly identify the
+ * instantiation method pointer for client's request.
+ */
 const TImplementationProxy ImplementationTable[] =
     {
     IMPLEMENTATION_PROXY_ENTRY(
@@ -31,14 +31,14 @@
             CEmailInterfaceFactoryImpl::NewL )
     };
 
-// -----------------------------------------------------------------------------
-// Returns the TImplementationProxy for email client api implementation
-// -----------------------------------------------------------------------------
-EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
+/**
+ * Returns the TImplementationProxy for email client api implementation
+ */
+EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
     {
-    aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
+    aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
 
     return ImplementationTable;
     }
 
-// End of file
+// End of file.