usbmgmt/usbmgr/device/classdrivers/acm/classimplementation/ecacm/inc/acmserver.h
changeset 0 c9bc50fca66e
equal deleted inserted replaced
-1:000000000000 0:c9bc50fca66e
       
     1 /*
       
     2 * Copyright (c) 2005-2009 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:
       
    15 *
       
    16 */
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalComponent
       
    21 */
       
    22 
       
    23 #ifndef ACMSERVER_H
       
    24 #define ACMSERVER_H
       
    25 
       
    26 #include <e32base.h>
       
    27 
       
    28 class MAcmController;
       
    29 
       
    30 /**
       
    31 The ACM server class - this is created/owned by the ACM Port Factory.
       
    32 Clients can use this server to create and destroy ACM functions.
       
    33 */
       
    34 NONSHARABLE_CLASS(CAcmServer) : public CPolicyServer
       
    35 	{
       
    36 public:
       
    37 	static CAcmServer* NewL(MAcmController& aAcmController);
       
    38 	~CAcmServer();
       
    39 
       
    40 private:
       
    41 	CAcmServer(MAcmController& aAcmController);
       
    42 	
       
    43 private: // from CPolicyServer
       
    44 	CSession2* NewSessionL(const TVersion &aVersion, const RMessage2& aMessage) const;
       
    45 	
       
    46 private: // unowned
       
    47 	MAcmController& iAcmController;
       
    48 	};
       
    49 
       
    50 #endif // ACMSERVER_H