os/ossrv/genericservices/s60compatibilityheaders/commonengine/src/commoncontentpolicy.cpp
Update contrib.
1 // Copyright (c) 2002-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 #include <apfmimecontentpolicy.h>
20 #include "commoncontentpolicy.h"
22 EXPORT_C CCommonContentPolicy* CCommonContentPolicy::NewL()
23 { return reinterpret_cast<CCommonContentPolicy*>(CApfMimeContentPolicy::NewL()); }
25 EXPORT_C CCommonContentPolicy* CCommonContentPolicy::NewLC()
26 { return reinterpret_cast<CCommonContentPolicy*>(CApfMimeContentPolicy::NewLC()); }
28 EXPORT_C CCommonContentPolicy* CCommonContentPolicy::NewL(RFs& aFs)
29 { return reinterpret_cast<CCommonContentPolicy*>(CApfMimeContentPolicy::NewL(aFs)); }
31 EXPORT_C CCommonContentPolicy* CCommonContentPolicy::NewLC(RFs& aFs)
32 { return reinterpret_cast<CCommonContentPolicy*>(CApfMimeContentPolicy::NewLC(aFs)); }
34 EXPORT_C CCommonContentPolicy::~CCommonContentPolicy()
35 { delete reinterpret_cast<CApfMimeContentPolicy*>(this); }
37 EXPORT_C TBool CCommonContentPolicy::IsClosedType(const TDesC& aMimeType)
38 { return reinterpret_cast<CApfMimeContentPolicy*>(this)->IsClosedType(aMimeType); }
40 EXPORT_C TBool CCommonContentPolicy::IsClosedExtension(const TDesC& aFileExtension)
41 { return reinterpret_cast<CApfMimeContentPolicy*>(this)->IsClosedExtension(aFileExtension); }
43 EXPORT_C TBool CCommonContentPolicy::IsClosedFileL(const TDesC& aFileName)
44 { return reinterpret_cast<CApfMimeContentPolicy*>(this)->IsClosedFileL(aFileName); }
46 EXPORT_C TBool CCommonContentPolicy::IsDRMEnvelopeL(const TDesC& aFileName)
47 { return reinterpret_cast<CApfMimeContentPolicy*>(this)->IsDRMEnvelopeL(aFileName); }
49 EXPORT_C TBool CCommonContentPolicy::IsClosedFileL(RFile& aFileHandle)
50 { return reinterpret_cast<CApfMimeContentPolicy*>(this)->IsClosedFileL(aFileHandle); }
52 EXPORT_C TBool CCommonContentPolicy::IsDRMEnvelopeL(RFile& aFileHandle)
53 { return reinterpret_cast<CApfMimeContentPolicy*>(this)->IsDRMEnvelopeL(aFileHandle); }