os/kernelhwsrv/kerneltest/f32test/smassstorage/inc/t_cusbmassstoragecontroller.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of the License "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Class declaration for CUsbMassStorageController.
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @internalTechnology
    21 */
    22  
    23 #ifndef __T_CUSBMASSSTORAGECONTROLLER_H__
    24 #define __T_CUSBMASSSTORAGECONTROLLER_H__
    25 
    26 #include <e32base.h>
    27 #include "cusbmassstorageserver.h"
    28 #include "protocol.h"
    29 #include "massstoragedebug.h"
    30 
    31 /**
    32  Mass Storage Controller class.
    33  Encapsulates the drive manager, transport and protocol for USB Mass Storage.
    34  Its main purpose is to instantiate and initialize these objects.
    35  */
    36 class CUsbMassStorageController : public CBase
    37 	{
    38 	public:
    39     static CUsbMassStorageController* NewL();
    40 	~CUsbMassStorageController();
    41 	TInt Start(TMassStorageConfig& aConfig);
    42 	TInt Stop();
    43 	};
    44 
    45 #endif //__T_CUSBMASSSTORAGECONTROLLER_H__