examples/SDKExamples/ClientServerAsync/client/src/csasync.cpp

00001 /*
00002 * ==============================================================================
00003 *  Name        : csasync.cpp
00004 *  Part of     : CSAsync
00005 *  Interface   :
00006 *  Description :
00007 *  Version     :
00008 *
00009 *  Copyright (c) 2004-2006 Nokia Corporation and/or its subsidiary(-ies).
00010 *  All rights reserved.
00011 *  This component and the accompanying materials are made available
00012 *  under the terms of "Eclipse Public License v1.0"
00013 *  which accompanies this distribution, and is available
00014 *  at the URL "http://www.eclipse.org/legal/epl-v10.html".
00015 * ==============================================================================
00016 */
00017 
00018 
00019 // INCLUDE FILES
00020 #include <EikStart.h>
00021 
00022 #include "CSAsyncApplication.h"
00023 
00024 // ========================== OTHER EXPORTED FUNCTIONS =========================
00025 
00026 // -----------------------------------------------------------------------------
00027 // NewApplication()
00028 // Create a CSAsync application, and return a pointer to it
00029 // -----------------------------------------------------------------------------
00030 //
00031 EXPORT_C CApaApplication* NewApplication()
00032     {
00033     return ( static_cast<CApaApplication*>( new CCSAsyncApplication ) );
00034     }
00035 
00036 // -----------------------------------------------------------------------------
00037 // E32Main()
00038 // DLL entry point
00039 // -----------------------------------------------------------------------------
00040 //
00041 GLDEF_C TInt E32Main()
00042     {
00043     return EikStart::RunApplication( NewApplication );
00044     }
00045 
00046 // End of File

Generated by  doxygen 1.6.2