remotestoragefw/remotefilesystemplugin/src/rsfwfs.cpp
changeset 13 6b4fc789785b
parent 2 c32dc0be5eb4
equal deleted inserted replaced
2:c32dc0be5eb4 13:6b4fc789785b
     1 /*
       
     2 * Copyright (c) 2003-2006 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Allows creating a Remote Storage FW file system plug-in from
       
    15 *              : a factory function.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include "rsfwfilesystem.h"
       
    23 #include "rsfwsession.h"
       
    24 #include "rsfwinterface.h"
       
    25 
       
    26 
       
    27 // -----------------------------------------------------------------------------
       
    28 // CreateFileSystem 
       
    29 // Implements factory function for creating new file systems.
       
    30 // Allows creating a Remote Storage FW file system plug-in from this DLL.
       
    31 // Returns: CRemoteFsFileSystem*: pointer to the Remote Storage FW file system 
       
    32 //                                plug-in main class
       
    33 // -----------------------------------------------------------------------------
       
    34 //
       
    35 extern "C"
       
    36     {
       
    37     EXPORT_C CFileSystem* CreateFileSystem()
       
    38         {
       
    39         
       
    40         return(CRsfwFileSystem::New());
       
    41         
       
    42         }
       
    43     }
       
    44