remotecontrol/remotecontrolfw/types/public/playertype.h
changeset 51 20ac952a623c
equal deleted inserted replaced
48:22de2e391156 51:20ac952a623c
       
     1 // Copyright (c) 2008-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 /**
       
    18  @file
       
    19  @publishedAll
       
    20  @released
       
    21 */
       
    22 
       
    23 #ifndef PLAYERTYPE_H
       
    24 #define PLAYERTYPE_H
       
    25 
       
    26 enum TPlayerType
       
    27 	{
       
    28 	ERemConAudioPlayer = 1,
       
    29 	ERemConVideoPlayer = 1<<1,
       
    30 	ERemConBroadcastingAudioPlayer = 1<<2,
       
    31 	ERemConBroadcastingVideoPlayer = 1<<3,
       
    32 	};
       
    33 
       
    34 enum TPlayerSubType
       
    35 	{
       
    36 	ERemConNoSubType = 0,
       
    37 	ERemConAudioBook = 1,
       
    38 	ERemConPodcast = 1<<1,
       
    39 	};
       
    40 
       
    41 class TPlayerTypeInformation
       
    42 	{
       
    43 public:
       
    44 	TPlayerType iPlayerType;
       
    45 	TPlayerSubType iPlayerSubType;
       
    46 	};
       
    47 
       
    48 #endif // PLAYERTYPE_H