javamanager/javacaptain/rtcplugins/midp/inc/midpruntime.h
branchRCL_3
changeset 14 04becd199f91
equal deleted inserted replaced
13:f5050f1da672 14:04becd199f91
       
     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:  MidpRtcRuntime
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MIDPRUNTIME_H
       
    19 #define MIDPRUNTIME_H
       
    20 
       
    21 #include "rtcbaseplugin.h"
       
    22 
       
    23 namespace java
       
    24 {
       
    25 namespace captain
       
    26 {
       
    27 
       
    28 class MidpRuntime : public RtcBasePlugin
       
    29 {
       
    30 public:
       
    31     MidpRuntime(const Uid& aUID,
       
    32                 CoreInterface* aCore);
       
    33     virtual ~MidpRuntime();
       
    34 
       
    35 protected:
       
    36     // Currently only platform/runtime specific part
       
    37     virtual cmdLine_t& generateCommandLine(const int& aLaunchType,
       
    38                                            cmdLine_t& params);
       
    39 };
       
    40 
       
    41 } // namespace captain
       
    42 } // namespace java
       
    43 
       
    44 #endif // MIDPRUNTIME_H
       
    45 
       
    46