mtpfws/mtpfw/datatypes/interface/cmtptypedeleteobjectproplist.h
changeset 0 d0791faffa3f
equal deleted inserted replaced
-1:000000000000 0:d0791faffa3f
       
     1 // Copyright (c) 2006-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 @internalComponent
       
    19 */
       
    20 
       
    21 #ifndef CMTPTYPEDELETEOBJECTPROPLIST_H_
       
    22 #define CMTPTYPEDELETEOBJECTPROPLIST_H_
       
    23 
       
    24 #include <mtp/cmtptypelist.h>
       
    25 
       
    26 class TMTPTypeDataPair;
       
    27 
       
    28 class CMTPTypeDeleteObjectPropList : public CMTPTypeList
       
    29     {
       
    30     
       
    31 public:
       
    32     IMPORT_C static CMTPTypeDeleteObjectPropList* NewL();
       
    33     IMPORT_C static CMTPTypeDeleteObjectPropList* NewLC();
       
    34     IMPORT_C ~CMTPTypeDeleteObjectPropList();
       
    35     
       
    36   
       
    37     
       
    38 public: //CMTPTypeList
       
    39     IMPORT_C  void AppendL(const TMTPTypeDataPair* aElement);
       
    40     IMPORT_C  TMTPTypeDataPair& ElementL(const TInt aIndex) const;
       
    41 
       
    42 private:
       
    43     CMTPTypeDeleteObjectPropList();
       
    44     void ConstructL();
       
    45     };
       
    46 
       
    47 
       
    48 
       
    49 #endif /* CMTPTYPEDELETEOBJECTPROPLIST_H_ */