bearermanagement/mpm/inc/mpmlauncher.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 14 Apr 2010 16:22:04 +0300
branchRCL_3
changeset 17 c14618f9de99
parent 13 68f0c7cd80ec
permissions -rw-r--r--
Revision: 201013 Kit: 201015

/*
* Copyright (c) 2004-2005 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: This header defines server launcher for MPM client.
*
*/

/**
@file mpmlauncher.h
Mobility Policy Manager server laucher for the client.
*/

#ifndef MPMLAUNCHER_H
#define MPMLAUNCHER_H

//  INCLUDES
#include <e32std.h>

// CONSTANTS
_LIT( KMPMLauncherSemaphore, "MPMLauncherSemaphore" );

// CLASS DECLARATION
/**
*  Mobility Policy Manager server laucher for client.
*  @lib MPM.lib
*  @since 3.0
*/
NONSHARABLE_CLASS(MPMLauncher)
    {
    public: // New methods

        /**
        * Initiates MPM server starting.
        * @since 3.0
        * @param aServerFileName
        * @param aServerUid2
        * @param aServerUid3
        * @return KErrNone if starting OK.
        */
        static TInt LaunchServer(
            const TDesC& aServerFileName,
            const TUid& aServerUid2,
            const TUid& aServerUid3);

    };

#endif // MPMLAUNCHER_H

// End of File