mtpfws/mtpfw/dataproviders/dataproviderapi/interface/mtpstoragemgrquerytypes.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  @publishedPartner
       
    19  @released
       
    20 */
       
    21 
       
    22 #ifndef MTPSTORAGEMGRQUERYTYPES_H
       
    23 #define MTPSTORAGEMGRQUERYTYPES_H
       
    24 
       
    25 #include <e32cmn.h>
       
    26 
       
    27 /**
       
    28 Defines the MTP data provider framework object store enumeration manager object
       
    29 query parameters.
       
    30 */
       
    31 class TMTPStorageMgrQueryParams
       
    32     {
       
    33 public:
       
    34 
       
    35     IMPORT_C TMTPStorageMgrQueryParams();
       
    36     IMPORT_C TMTPStorageMgrQueryParams(const TDesC& aStorageSuid, TUint32 aStorageSystemType);
       
    37     
       
    38     IMPORT_C void SetStorageSuid(const TDesC& aStorageSuid);
       
    39     IMPORT_C void SetStorageSystemType(TUint32 aStorageSystemType);
       
    40     
       
    41     IMPORT_C const TDesC& StorageSuid() const;
       
    42     IMPORT_C TUint32 StorageSystemType() const;
       
    43 
       
    44 private:
       
    45     
       
    46     /**
       
    47     The storage System Unique IDentifier (SUID). 
       
    48     */
       
    49     TPtrC   iStorageSuid;
       
    50 
       
    51     /**
       
    52     The storage system type.
       
    53     */
       
    54     TUint32 iStorageSystemType;
       
    55     };
       
    56     
       
    57 #endif // MTPSTORAGEMGRQUERYTYPES_H