xdmprotocols/XcapProtocol/XcapCache/Server/inc/XcapShutdownTimer.h
branchRCL_3
changeset 34 2669f8761a99
parent 31 2580314736af
child 35 fbd2e7cec7ef
equal deleted inserted replaced
31:2580314736af 34:2669f8761a99
     1 /*
       
     2 * Copyright (c) 2005 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:   CXcapShutdownTimer
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef __XCAPSHUTDOWNTIMER__
       
    22 #define __XCAPSHUTDOWNTIMER__
       
    23 
       
    24 NONSHARABLE_CLASS( CXcapShutdownTimer ) : public CTimer
       
    25 	{	
       
    26     public:
       
    27     
       
    28         /**
       
    29         * Returns the MIME type of the messages
       
    30         * @return TPtrC8 The MIME type of the messages
       
    31         */
       
    32 	    CXcapShutdownTimer();
       
    33 	
       
    34 	    /**
       
    35         * Returns the MIME type of the messages
       
    36         * @return TPtrC8 The MIME type of the messages
       
    37         */
       
    38 	    void ConstructL();
       
    39 	
       
    40 	    /**
       
    41         * Returns the MIME type of the messages
       
    42         * @return TPtrC8 The MIME type of the messages
       
    43         */
       
    44 	    void Start();
       
    45 	
       
    46     private:
       
    47     
       
    48         /**
       
    49         * Returns the MIME type of the messages
       
    50         * @return TPtrC8 The MIME type of the messages
       
    51         */
       
    52 	    void RunL();
       
    53 	    
       
    54 	private:
       
    55 	
       
    56 		enum { KXcapCacheShutdownDelay = 0x200000 };	
       
    57 	};
       
    58 	
       
    59 #endif