remotestoragefw/remotefilesystemplugin/inc/rsfwfsformatcb.h
branchRCL_3
changeset 15 88ee4cf65e19
parent 12 87c71b25c937
child 16 1aa8c82cb4cb
equal deleted inserted replaced
12:87c71b25c937 15:88ee4cf65e19
     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:  Remote File System Plug-in implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CRSFWFSFORMATCB_H
       
    20 #define CRSFWFSFORMATCB_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <f32fsys.h>
       
    24 
       
    25 /**
       
    26  *  Classes that a plug-in file system must implement. A plug-in 
       
    27  *  filesystem must implement CFileSystem, which is a factory class for 
       
    28  *  a file system. That class must create objects derived from CMountCB, 
       
    29  *  CFileCB, CDirCB and CFormatCB. These are defined in f32fsys.h
       
    30  *
       
    31  *  @lib eremotefs.fsy
       
    32  *  @since Series 60 3.2
       
    33  */
       
    34 
       
    35 // ---------------------------------------------------------------------
       
    36 // CRsfwFsFormatCB
       
    37 // ---------------------------------------------------------------------
       
    38 class CRsfwFsFormatCB : public CFormatCB
       
    39     {
       
    40 public:  // Constructors and destructor 
       
    41 
       
    42     /**
       
    43      * Constructor.
       
    44      */
       
    45     CRsfwFsFormatCB();
       
    46         
       
    47     /**
       
    48      * Destructor.
       
    49      */
       
    50     ~CRsfwFsFormatCB();
       
    51         
       
    52 public:  // Functions from base classes¨
       
    53     /**
       
    54      * From CFormatCB Performs a formatting step on the drive.
       
    55      * @since Series 60 3.2
       
    56      * @return 
       
    57      */
       
    58     void DoFormatStepL();
       
    59     };
       
    60 
       
    61 #endif // CRSFWFSFORMATCB_H
       
    62 
       
    63