First public contribution.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #include "refcafhelper.h"
24 EXPORT_C MCAFHelperInterface* CReferenceCafHelper::NewCafHelperImplL()
26 return new (ELeave) CReferenceCafHelper;
29 CReferenceCafHelper::CReferenceCafHelper()
33 EXPORT_C TInt CReferenceCafHelper::HandleCAFErrorL(TInt /*aError*/, const TDesC& /*aFileName*/)
35 return KErrNotSupported;
38 EXPORT_C TInt CReferenceCafHelper::HandleCAFErrorL(TInt /*aError*/, RFile& /*aFileHandle*/)
40 return KErrNotSupported;
43 EXPORT_C TInt CReferenceCafHelper::HandleCAFErrorL(TInt /*aError*/, const TDesC8& /*aHeaderData*/)
45 return KErrNotSupported;
48 EXPORT_C void CReferenceCafHelper::Release()
53 CReferenceCafHelper::~CReferenceCafHelper()