internetradio2.0/inc/ircmdlineparams.h
changeset 14 896e9dbc5f19
equal deleted inserted replaced
12:608f67c22514 14:896e9dbc5f19
       
     1 /*
       
     2 * Copyright (c) 2008 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:  Command line parameter interface for Internet Radio.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef IRCMDLINEPARAMS_H
       
    20 #define IRCMDLINEPARAMS_H
       
    21 
       
    22 #include <e32def.h>
       
    23 
       
    24 /**
       
    25  * Command line option for activating certain view at startup.
       
    26  * For internal use.
       
    27  */
       
    28 _LIT8( KIRCmdLineOptionView, "-view" );
       
    29 
       
    30 /**
       
    31  * Command line argument for now playing view.
       
    32  * For internal use.
       
    33  */
       
    34 _LIT8( KIRCmdLineArgumentNowPlaying, "nowplaying" );
       
    35 
       
    36 /**
       
    37  * Full command line parameter for activating now playing view at startup.
       
    38  * External applications should use directly this literal.
       
    39  */
       
    40 _LIT8( KIRCmdLineParamViewNowPlaying, "-view nowplaying" );
       
    41 
       
    42 #endif //  IRCMDLINEPARAMS_H