upnp/upnpstack/serviceframework/inc/upnphttpinitialeventtransaction.h
changeset 0 f5a58ecadc66
equal deleted inserted replaced
-1:000000000000 0:f5a58ecadc66
       
     1 /** @file
       
     2 * Copyright (c) 2008-2008 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:  Implements algoritms for nonmodereted events
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_CUPNPHTTPINITIALEVENTTRANSACTION_H
       
    20 #define C_CUPNPHTTPINITIALEVENTTRANSACTION_H
       
    21 
       
    22 // INCLUDES
       
    23 
       
    24 #include "upnphttptransaction.h"
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  CUpnpHttpInitialEventTransaction
       
    30 * 
       
    31 */
       
    32 NONSHARABLE_CLASS( CUpnpHttpInitialEventTransaction ): public CUpnpHttpTransaction
       
    33     {
       
    34 public:
       
    35     // Constructors and destructor
       
    36 
       
    37     /**
       
    38      * Destructor.
       
    39      */
       
    40     ~CUpnpHttpInitialEventTransaction();
       
    41 
       
    42     /**
       
    43      * Two-phased constructor.
       
    44      */
       
    45     static CUpnpHttpInitialEventTransaction* NewL( CUpnpHttpMessage* aRequest );
       
    46 
       
    47     /**
       
    48      * Two-phased constructor.
       
    49      */
       
    50     static CUpnpHttpInitialEventTransaction* NewLC( CUpnpHttpMessage* aRequest );
       
    51     
       
    52     /*
       
    53     * Pure virtual method that let child classes to process
       
    54     * response in their own specific way.
       
    55     */
       
    56     void ProcessResponseL();
       
    57         
       
    58 private:
       
    59 
       
    60     /**
       
    61      * Constructor for performing 1st stage construction
       
    62      */
       
    63     CUpnpHttpInitialEventTransaction( CUpnpHttpMessage* aRequest );
       
    64 
       
    65     };
       
    66 
       
    67 #endif // C_CUPNPHTTPINITIALEVENTTRANSACTION_H
       
    68 //end of file