sysstatemgmt/systemstateplugins/cmncustomcmd/src/ssmcmncustomcmdfactory.cpp
changeset 0 4e1aa6a622a0
child 70 653a8b91b95e
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalComponent
       
    19  @released
       
    20 */
       
    21 
       
    22 #include "ssmcmncustomcmdfactory.h"
       
    23 #include "cmdrendezvouswithestart.h"
       
    24 #include "cmdpersistreboots.h"
       
    25 #include "cmdcancelmonitoring.h"
       
    26 
       
    27 EXPORT_C MSsmCustomCommand* SsmCmnCustomCmdFactory::CmdRendezvousWithEStartL()
       
    28 	{
       
    29 	CCustomCmdRendezvousWithEStart* self = CCustomCmdRendezvousWithEStart::NewL();
       
    30 	return self;
       
    31 	}
       
    32 
       
    33 EXPORT_C MSsmCustomCommand* SsmCmnCustomCmdFactory::CmdPersistRebootsNewL()
       
    34 	{
       
    35 	CCustomCmdPersistReboots* self = CCustomCmdPersistReboots::NewL();
       
    36 	return self;
       
    37 	}
       
    38 
       
    39 EXPORT_C MSsmCustomCommand* SsmCmnCustomCmdFactory::CmdCancelMonitoringL()
       
    40     {
       
    41     CCustomCmdCancelMonitoring* self = CCustomCmdCancelMonitoring::NewL();
       
    42     return self;
       
    43     }
       
    44 
       
    45