uiacceltk/hitchcock/goommonitor/src/goomcloseappconfig.cpp
changeset 0 15bf7259bb7c
equal deleted inserted replaced
-1:000000000000 0:15bf7259bb7c
       
     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:  Configuration representation classes for Graphics Out of Memory Monitor
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "goomcloseappconfig.h"
       
    20 #include "goomtraces.h"
       
    21 
       
    22 CGOomCloseAppConfig* CGOomCloseAppConfig::NewL(TInt32 aId)
       
    23     {
       
    24     FUNC_LOG;
       
    25 
       
    26     CGOomCloseAppConfig* self = new (ELeave) CGOomCloseAppConfig(aId);
       
    27     CleanupStack::PushL(self);
       
    28     self->ConstructL();
       
    29     CleanupStack::Pop(self);
       
    30     return self;
       
    31     }
       
    32 
       
    33 CGOomCloseAppConfig::~CGOomCloseAppConfig()
       
    34     {
       
    35     FUNC_LOG;
       
    36     }
       
    37 
       
    38 CGOomCloseAppConfig::CGOomCloseAppConfig(TInt32 aId) : CGOomActionConfig(aId)
       
    39     {
       
    40     FUNC_LOG;
       
    41     }