sl@0: /* sl@0: * Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef COMMON_CONTENT_POLICY_H sl@0: #define COMMON_CONTENT_POLICY_H sl@0: sl@0: #include sl@0: sl@0: class RFile; sl@0: class RFs; sl@0: sl@0: NONSHARABLE_CLASS(CCommonContentPolicy) : public CBase sl@0: /** sl@0: @deprecated sl@0: @see CApfMimeContentPolicy sl@0: @note For compatibility with S60 only sl@0: */ sl@0: { sl@0: public: sl@0: IMPORT_C static CCommonContentPolicy* NewL(); sl@0: IMPORT_C static CCommonContentPolicy* NewLC(); sl@0: IMPORT_C static CCommonContentPolicy* NewL(RFs& aFs); sl@0: IMPORT_C static CCommonContentPolicy* NewLC(RFs& aFs); sl@0: IMPORT_C ~CCommonContentPolicy(); sl@0: sl@0: IMPORT_C TBool IsClosedType(const TDesC& aMimeType); sl@0: IMPORT_C TBool IsClosedExtension(const TDesC& aFileExtension); sl@0: IMPORT_C TBool IsClosedFileL(const TDesC& aFileName); sl@0: IMPORT_C TBool IsDRMEnvelopeL(const TDesC& aFileName); sl@0: IMPORT_C TBool IsClosedFileL(RFile& aFileHandle); sl@0: IMPORT_C TBool IsDRMEnvelopeL(RFile& aFileHandle); sl@0: private: sl@0: CCommonContentPolicy(); sl@0: }; sl@0: sl@0: #endif // COMMON_CONTENT_POLICY_H