mtpdataproviders/mtpimagedp/inc/cmtpimagedpgetobjectreferences.h
changeset 0 d0791faffa3f
equal deleted inserted replaced
-1:000000000000 0:d0791faffa3f
       
     1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalTechnology
       
    19 */
       
    20 
       
    21 #ifndef CMTPIMAGEDPGETOBJECTREFERENCES_H
       
    22 #define CMTPIMAGEDPGETOBJECTREFERENCES_H
       
    23 
       
    24 #include "cmtprequestprocessor.h"
       
    25 
       
    26 class CMTPTypeArray;
       
    27 class CMTPImageDataProvider;
       
    28 
       
    29 /** 
       
    30 Defines generic file system object GetObjectReferences request processor.
       
    31 @internalTechnology
       
    32 */
       
    33 class CMTPImageDpGetObjectReferences : public CMTPRequestProcessor
       
    34     {
       
    35 public:
       
    36     static MMTPRequestProcessor* NewL(MMTPDataProviderFramework& aFramework, MMTPConnection& aConnection, CMTPImageDataProvider& aDataProvider); 
       
    37     ~CMTPImageDpGetObjectReferences();  
       
    38     
       
    39 private:    
       
    40     CMTPImageDpGetObjectReferences(MMTPDataProviderFramework& aFramework, MMTPConnection& aConnection);
       
    41     void ConstructL();
       
    42     
       
    43 private: // From CMTPRequestProcessor
       
    44     virtual TMTPResponseCode CheckRequestL();
       
    45     virtual void ServiceL();    
       
    46     
       
    47 private:
       
    48     /**
       
    49     FLOGGER debug trace member variable.
       
    50     **/
       
    51     __FLOG_DECLARATION_MEMBER_MUTABLE;
       
    52     
       
    53     CMTPTypeArray*          iReferences;
       
    54     };
       
    55     
       
    56 #endif // CMTPIMAGEDPGETOBJECTREFERENCES_H
       
    57