usbmgmt/usbmgr/host/functiondrivers/ms/msmm/server/inc/msmmterminator.h
changeset 0 c9bc50fca66e
equal deleted inserted replaced
-1:000000000000 0:c9bc50fca66e
       
     1 /*
       
     2 * Copyright (c) 2008-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 MSMMTERMINATOR_H
       
    24 #define MSMMTERMINATOR_H
       
    25 
       
    26 #include <e32base.h>
       
    27 
       
    28 class CDeviceEventQueue;
       
    29 
       
    30 NONSHARABLE_CLASS(CMsmmTerminator) : public CTimer
       
    31     {
       
    32 public:
       
    33     static CMsmmTerminator* NewL(const CDeviceEventQueue& anEventQueue);
       
    34     
       
    35     void Start();
       
    36     
       
    37 protected:
       
    38     void RunL();
       
    39     
       
    40 private:
       
    41     CMsmmTerminator(const CDeviceEventQueue& anEventQueue);
       
    42     void ConstructL();
       
    43     
       
    44 private:
       
    45     const CDeviceEventQueue& iEventQueue;
       
    46     };
       
    47 
       
    48 #endif /*MSMMTERMINATOR_H*/
       
    49