userlibandfileserver/fileserver/smassstorage/inc/cusbmassstorageserver.inl
changeset 0 a41df078684a
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     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 // @file
       
    15 // @internalTechnology
       
    16 // Implements a Symbian OS server that exposes the RUsbMassStorge API
       
    17 // 
       
    18 //
       
    19 
       
    20 #ifndef __CUSBMASSSTORAGESERVER_INL__
       
    21 #define __CUSBMASSSTORAGESERVER_INL__
       
    22 
       
    23 
       
    24 /**
       
    25  Returns a reference to the CUsbMassStorageController
       
    26 
       
    27  @internalTechnology
       
    28  @return	the reference to the CUsbMassStorageController
       
    29  */
       
    30 inline CUsbMassStorageController& CUsbMassStorageServer::Controller() const
       
    31 	{
       
    32 	return iController;
       
    33 	}
       
    34 
       
    35 /**
       
    36  Gets session count
       
    37  
       
    38  @internalTechnology
       
    39  @return iSessionCount
       
    40  */
       
    41 inline TInt CUsbMassStorageServer::SessionCount() const
       
    42 	{
       
    43 	return iSessionCount;
       
    44 	}
       
    45 
       
    46 #endif // __CUSBMASSSTORAGESERVER_INL__
       
    47