emailservices/emailclientapi/src/implproxy.cpp
branchRCL_3
changeset 24 d189ee25cf9d
parent 0 8466d47a6819
child 25 3533d4323edc
--- a/emailservices/emailclientapi/src/implproxy.cpp	Thu Aug 19 09:38:05 2010 +0300
+++ b/emailservices/emailclientapi/src/implproxy.cpp	Tue Aug 31 15:04:17 2010 +0300
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
+* Copyright (c) 2010 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 <ecom/implementationproxy.h>	//TImplementationProxy
+#include <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