os/ossrv/genericservices/s60compatibilityheaders/commonengine/inc/commoncontentpolicy.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2002-2009 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:
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef COMMON_CONTENT_POLICY_H
    21 #define COMMON_CONTENT_POLICY_H
    22 
    23 #include <e32base.h>
    24 
    25 class RFile;
    26 class RFs;
    27 
    28 NONSHARABLE_CLASS(CCommonContentPolicy) : public CBase
    29 /**
    30 @deprecated
    31 @see CApfMimeContentPolicy
    32 @note For compatibility with S60 only
    33 */
    34 	{
    35 public: 
    36 	IMPORT_C static CCommonContentPolicy* NewL();
    37 	IMPORT_C static CCommonContentPolicy* NewLC();
    38 	IMPORT_C static CCommonContentPolicy* NewL(RFs& aFs);
    39 	IMPORT_C static CCommonContentPolicy* NewLC(RFs& aFs);
    40 	IMPORT_C ~CCommonContentPolicy();
    41 
    42 	IMPORT_C TBool IsClosedType(const TDesC& aMimeType);
    43 	IMPORT_C TBool IsClosedExtension(const TDesC& aFileExtension);
    44 	IMPORT_C TBool IsClosedFileL(const TDesC& aFileName);
    45 	IMPORT_C TBool IsDRMEnvelopeL(const TDesC& aFileName);
    46 	IMPORT_C TBool IsClosedFileL(RFile& aFileHandle);
    47 	IMPORT_C TBool IsDRMEnvelopeL(RFile& aFileHandle);
    48 private:
    49 	CCommonContentPolicy();
    50 	};
    51 	
    52 #endif  // COMMON_CONTENT_POLICY_H