omadrm/drmengine/dcf/inc/Oma2DcfPartInfo.h
changeset 0 95b198f216e5
equal deleted inserted replaced
-1:000000000000 0:95b198f216e5
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef OMA2DCFPARTINFO_H
       
    21 #define OMA2DCFPARTINFO_H
       
    22 
       
    23 //  INCLUDES
       
    24 
       
    25 // CONSTANTS
       
    26 //const ?type ?constant_var = ?constant;
       
    27 
       
    28 // MACROS
       
    29 //#define ?macro ?macro_def
       
    30 
       
    31 // DATA TYPES
       
    32 //enum ?declaration
       
    33 //typedef ?declaration
       
    34 //extern ?data_type;
       
    35 
       
    36 // FUNCTION PROTOTYPES
       
    37 //?type ?function_name(?arg_list);
       
    38 
       
    39 // FORWARD DECLARATIONS
       
    40 //class ?FORWARD_CLASSNAME;
       
    41 
       
    42 // CLASS DECLARATION
       
    43 
       
    44 /**
       
    45 *  ?one_line_short_description.
       
    46 *  ?other_description_lines
       
    47 *
       
    48 *  @lib ?library
       
    49 *  @since Series ?XX ?SeriesXX_version
       
    50 */
       
    51 NONSHARABLE_CLASS(COma2DcfPartInfo): public CBase
       
    52     {
       
    53     public:  // Constructors and destructor
       
    54         
       
    55         /**
       
    56         * Two-phased constructor.
       
    57         */
       
    58         static COma2DcfPartInfo* NewL();
       
    59         
       
    60         /**
       
    61         * Destructor.
       
    62         */
       
    63         virtual ~COma2DcfPartInfo();
       
    64 
       
    65     public: // New functions
       
    66         
       
    67         /**
       
    68         * ?member_description.
       
    69         * @since Series ?XX ?SeriesXX_version
       
    70         * @param ?arg1 ?description
       
    71         * @return ?description
       
    72         */
       
    73         //?type ?member_function(?type ?arg1);
       
    74 
       
    75     public: // Functions from base classes
       
    76 
       
    77         /**
       
    78         * From ?base_class ?member_description.
       
    79         * @since Series ?XX ?SeriesXX_version
       
    80         * @param ?arg1 ?description
       
    81         * @return ?description
       
    82         */
       
    83         
       
    84     protected:  // New functions
       
    85         
       
    86         /**
       
    87         * ?member_description.
       
    88         * @since Series ?XX ?SeriesXX_version
       
    89         * @param ?arg1 ?description
       
    90         * @return ?description
       
    91         */
       
    92         //?type ?member_function(?type ?arg1);
       
    93 
       
    94     protected:  // Functions from base classes
       
    95         
       
    96         /**
       
    97         * From ?base_class ?member_description
       
    98         */
       
    99         //?type ?member_function();
       
   100         
       
   101     private: // New functions 
       
   102     	    
       
   103     protected:
       
   104 
       
   105         /**
       
   106         * C++ default constructor.
       
   107         */
       
   108         COma2DcfPartInfo();
       
   109 
       
   110     public:     // Data
       
   111 
       
   112         HBufC8* iContentId;
       
   113         HBufC8* iMimeType;
       
   114         TUint32 iType;
       
   115         TInt iSize;
       
   116         TInt iOffset;
       
   117 
       
   118     protected:  // Data
       
   119         // ?one_line_short_description_of_data
       
   120         //?data_declaration;
       
   121 
       
   122     private:    // Data
       
   123         // ?one_line_short_description_of_data
       
   124         //?data_declaration;
       
   125          
       
   126         // Reserved pointer for future extension
       
   127         //TAny* iReserved;
       
   128 
       
   129     public:     // Friend classes
       
   130         //?friend_class_declaration;
       
   131     protected:  // Friend classes
       
   132         //?friend_class_declaration;
       
   133     private:    // Friend classes
       
   134         //?friend_class_declaration;
       
   135 
       
   136     };
       
   137 
       
   138 #endif      // OMA2DCF_H   
       
   139             
       
   140 // End of File