os/ossrv/lowlevellibsandfws/apputils/inc/BASSNDPriorityDecoder.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 
     3 // All rights reserved.
     4 
     5 // This component and the accompanying materials are made available
     6 
     7 // under the terms of "Eclipse Public License v1.0"
     8 
     9 // which accompanies this distribution, and is available
    10 
    11 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
    12 
    13 //
    14 
    15 // Initial Contributors:
    16 
    17 // Nokia Corporation - initial contribution.
    18 
    19 //
    20 
    21 // Contributors:
    22 
    23 //
    24 
    25 // Description:
    26 
    27 
    28 
    29 #ifndef BASSNDPRIORITYDECODER_H_
    30 
    31 #define BASSNDPRIORITYDECODER_H_
    32 
    33 
    34 
    35 #include <bassnd.h>
    36 
    37 
    38 
    39 
    40 
    41 class TBaSoundPriorityDecoder : public TBaSoundPriorityBase
    42 
    43 /**
    44 
    45 Decode a restored TBaSystemSoundInfo::iPriority
    46 
    47 @internalComponent
    48 
    49 */
    50 
    51 	{
    52 
    53 public:
    54 
    55 	inline TBaSoundPriorityDecoder(TInt aVal);
    56 
    57 	};
    58 
    59 
    60 
    61 
    62 
    63 inline TBaSoundPriorityDecoder::TBaSoundPriorityDecoder(TInt aVal)
    64 
    65 	{iPriority=aVal;}
    66 
    67 
    68 
    69 #endif /*BASSNDPRIORITYDECODER_H_*/
    70