bearermanagement/mpm/inc/mpmlauncher.h
changeset 0 5a93021fdf25
child 13 68f0c7cd80ec
equal deleted inserted replaced
-1:000000000000 0:5a93021fdf25
       
     1 /*
       
     2 * Copyright (c) 2004-2005 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: This header defines server launcher for MPM client.
       
    15 *
       
    16 */
       
    17 
       
    18 /**
       
    19 @file mpmlauncher.h
       
    20 Mobility Policy Manager server laucher for the client.
       
    21 */
       
    22 
       
    23 #ifndef MPMLAUNCHER_H
       
    24 #define MPMLAUNCHER_H
       
    25 
       
    26 //  INCLUDES
       
    27 #include <e32std.h>
       
    28 
       
    29 // CLASS DECLARATION
       
    30 /**
       
    31 *  Mobility Policy Manager server laucher for client.
       
    32 *  @lib MPM.lib
       
    33 *  @since 3.0
       
    34 */
       
    35 NONSHARABLE_CLASS(MPMLauncher)
       
    36     {
       
    37     public: // New methods
       
    38 
       
    39         /**
       
    40         * Initiates MPM server starting.
       
    41         * @since 3.0
       
    42         * @param aServerFileName
       
    43         * @param aServerUid2
       
    44         * @param aServerUid3
       
    45         * @return KErrNone if starting OK.
       
    46         */
       
    47         static TInt LaunchServer(
       
    48             const TDesC& aServerFileName,
       
    49             const TUid& aServerUid2,
       
    50             const TUid& aServerUid3);
       
    51 
       
    52     };
       
    53 
       
    54 #endif // MPMLAUNCHER_H
       
    55 
       
    56 // End of File