upnpsharing/upnpsharingalgorithm/inc/upnpsharingalgorithmconstants.h
branchIOP_Improvements
changeset 40 08b5eae9f9ff
equal deleted inserted replaced
39:6369bfd1b60d 40:08b5eae9f9ff
       
     1 /*
       
     2 * Copyright (c) 2009 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:  UpnpSharingAlgoritm component constants
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef UPNP_SHARING_ALGORITHM_CONSTANTS_H
       
    19 #define UPNP_SHARING_ALGORITHM_CONSTANTS_H
       
    20 
       
    21 // DEBUG file name
       
    22 _LIT( KComponentLogfile, "upnpsharingalgorithm.txt");
       
    23 
       
    24 // Resource file
       
    25 _LIT( KSharingAlgorithmRscFile, "\\resource\\upnpsharingalgorithm.rsc" );
       
    26 
       
    27 // CDS Browse filter criteria
       
    28 _LIT8( KBrowseCriteriaFilter, "*" );
       
    29 
       
    30 // CDS Container names
       
    31 _LIT8( KRootContainer,       "0" );
       
    32 
       
    33 // CDS container class types
       
    34 _LIT8( KMusicClassContainer,   "object.container.music" );
       
    35 _LIT8( KImageClassContainer,   "object.container.image" );
       
    36 _LIT8( KVideoClassContainer,   "object.container.video" );
       
    37 _LIT8( KContainerClass,        "object.container" );
       
    38 _LIT8( KItemClass,             "object.item" );
       
    39 
       
    40 // Metadata container types
       
    41 enum TMetadataContainerTypes
       
    42     {
       
    43     EGenreType = 0,
       
    44     EAlbumType,
       
    45     EArtistType,
       
    46     EMusicByDateType,
       
    47     EImageByDateType,
       
    48     EVideoByDateType
       
    49     };
       
    50 
       
    51 #endif // UPNP_SHARING_ALGORITHM_CONSTANTS_H
       
    52 
       
    53 // End of file