usbclasses/usbphoneasmodem/classimplementation/mscfileserver/inc/mscfileserver.inl
changeset 34 7858bc6ead78
parent 31 dfdd8240f7c8
child 35 9d8b04ca6939
equal deleted inserted replaced
31:dfdd8240f7c8 34:7858bc6ead78
     1 // Copyright (c) 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 "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: Implements a Symbian OS server that exposes the RUsbMassStorge API
       
    14 // 
       
    15 // 
       
    16 
       
    17 #ifndef MSCFILESERVER_INL
       
    18 #define MSCFILESERVER_INL
       
    19 
       
    20 
       
    21 /**
       
    22  Returns a reference to the CMscFileController
       
    23 
       
    24  @internalTechnology
       
    25  @return	the reference to the CMscFileController
       
    26  */
       
    27 inline CMscFileController& CMscFileServer::Controller() const
       
    28     {
       
    29     return *iController;
       
    30     }
       
    31 
       
    32 /**
       
    33  Gets session count
       
    34  
       
    35  @internalTechnology
       
    36  @return iSessionCount
       
    37  */
       
    38 inline TInt CMscFileServer::SessionCount() const
       
    39     {
       
    40     return iSessionCount;
       
    41     }
       
    42 
       
    43 #endif // MSCFILESERVER_INL
       
    44