sysresmonitoring/oommonitor/src/oomcloseappconfig.cpp
branchRCL_3
changeset 1 0fdb7f6b0309
child 2 7645e9ce10dc
equal deleted inserted replaced
0:2e3d3ce01487 1:0fdb7f6b0309
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Configuration representation classes for Out of Memory Monitor.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include "oomcloseappconfig.h"
       
    21 #include "oomtraces.h"
       
    22 
       
    23 COomCloseAppConfig* COomCloseAppConfig::NewL(TInt32 aId)
       
    24     {
       
    25     FUNC_LOG;
       
    26 
       
    27     COomCloseAppConfig* self = new (ELeave) COomCloseAppConfig(aId);
       
    28     CleanupStack::PushL(self);
       
    29     self->ConstructL();
       
    30     CleanupStack::Pop(self);
       
    31     return self;
       
    32     }
       
    33 
       
    34 COomCloseAppConfig::~COomCloseAppConfig()
       
    35     {
       
    36     FUNC_LOG;
       
    37     }
       
    38 
       
    39 COomCloseAppConfig::COomCloseAppConfig(TInt32 aId) : COomActionConfig(aId)
       
    40     {
       
    41     FUNC_LOG;
       
    42     }