cryptoservices/filebasedcertificateandkeystores/source/keystore/Server/keystorecenrepconfig.cpp
changeset 108 ca9a0fc2f082
parent 85 1efb81185f1c
equal deleted inserted replaced
102:deec7e509f66 108:ca9a0fc2f082
     1 /*
     1 /*
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     2 * Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
    30 #include "keystorecenrepconfig.h"
    30 #include "keystorecenrepconfig.h"
    31 
    31 
    32 CKeyStoreCenrep* CKeyStoreCenrep::NewL()
    32 CKeyStoreCenrep* CKeyStoreCenrep::NewL()
    33 	{
    33 	{
    34 	CKeyStoreCenrep* keystoreCenrep = new(ELeave) CKeyStoreCenrep();
    34 	CKeyStoreCenrep* keystoreCenrep = new(ELeave) CKeyStoreCenrep();
       
    35 	CleanupStack::PushL(keystoreCenrep);
    35 	keystoreCenrep->ConstructL();
    36 	keystoreCenrep->ConstructL();
       
    37 	CleanupStack::Pop(keystoreCenrep);
    36 	return keystoreCenrep;
    38 	return keystoreCenrep;
    37 	}
    39 	}
    38 
    40 
    39 CKeyStoreCenrep::CKeyStoreCenrep()
    41 CKeyStoreCenrep::CKeyStoreCenrep()
    40 	{}
    42 	{}