browserutilities/feedsengine/FeedsServer/Client/inc/FolderItemRequestHandlers.h
changeset 0 dd21522fd290
child 36 0ed94ceaa377
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     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 the License "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:  FolderItem related client side request handlings.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef FOLDER_ITEM_REQUEST_HANDLER_H
       
    20 #define FOLDER_ITEM_REQUEST_HANDLER_H
       
    21 
       
    22 // Deprecation warning
       
    23 #warning This header file has been deprecated. Will be removed in one of the next SDK releases.
       
    24 
       
    25 // INCLUDES
       
    26 #include <f32file.h>
       
    27 #include <FeedsServerMsg.h>
       
    28 #include "FeedsEntity.h"
       
    29 #include "FeedsServerRequestHandler.h"
       
    30 
       
    31 // CONSTANTS
       
    32 
       
    33 // MACROS
       
    34 
       
    35 // DATA TYPES
       
    36 
       
    37 // FUNCTION PROTOTYPES
       
    38 
       
    39 // FORWARD DECLARATIONS
       
    40 
       
    41 // CLASS DECLARATION
       
    42 
       
    43 /**
       
    44 *  Handles async folder item requests.
       
    45 *
       
    46 *  \b Library: FeedsEngine.lib
       
    47 *
       
    48 *  @since CCB (7.1)
       
    49 */
       
    50 
       
    51 class CFolderItemRequestHandler : public CRequestHandler
       
    52 	{
       
    53 	
       
    54 public:
       
    55     /**
       
    56      * Two-phased constructor.
       
    57      */
       
    58     static CFolderItemRequestHandler* NewL();
       
    59    
       
    60 private:
       
    61 
       
    62      /**
       
    63      * C++ default constructor.
       
    64      */
       
    65     CFolderItemRequestHandler();
       
    66 
       
    67     /**
       
    68      * By default Symbian 2nd phase constructor is private.
       
    69      */
       
    70     void ConstructL();
       
    71 
       
    72 public:	
       
    73     /**
       
    74      * Destructor
       
    75      */	
       
    76     virtual ~CFolderItemRequestHandler();
       
    77 
       
    78     /**
       
    79      * Gets the FeedInterface
       
    80      */
       
    81      RFeedsInterface *GetFeedInterface();
       
    82      
       
    83      /**
       
    84      * Sets the FeedInterface
       
    85      */
       
    86      void SetFeedInterface(RFeedsInterface* aFeedsInterface);
       
    87 
       
    88     /**
       
    89      * Get the OperationRequested
       
    90      */	
       
    91      TBool GetOperationRequested();
       
    92      
       
    93      /**
       
    94      * set the OperationRequested
       
    95      */	
       
    96      void SetOperationRequested(TBool aOperationRequested);
       
    97 
       
    98 private:
       
    99     TBool      iOperationRequested;
       
   100     RFeedsInterface *iFeedsInterface;
       
   101 
       
   102     };	
       
   103 
       
   104 #endif  // FOLDER_ITEM_REQUEST_HANDLER_H
       
   105 // End of File