omadrm/drmengine/roap/inc/RIContext.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 RICONTEXT_H
       
    21 #define RICONTEXT_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 
       
    52 namespace Roap
       
    53 {
       
    54 
       
    55 class CRIContext : public CBase
       
    56     {
       
    57     public:  // Constructors and destructor
       
    58         
       
    59         /**
       
    60         * Two-phased constructor.
       
    61         */
       
    62         static CRIContext* NewL();
       
    63         
       
    64         /**
       
    65         * Destructor.
       
    66         */
       
    67         virtual ~CRIContext();
       
    68 
       
    69     public: // New functions
       
    70         
       
    71         /**
       
    72         * ?member_description.
       
    73         * @since Series ?XX ?SeriesXX_version
       
    74         * @param ?arg1 ?description
       
    75         * @return ?description
       
    76         */
       
    77         //?type ?member_function( ?type ?arg1 );
       
    78 
       
    79     public: // Functions from base classes
       
    80 
       
    81         /**
       
    82         * From ?base_class ?member_description.
       
    83         * @since Series ?XX ?SeriesXX_version
       
    84         * @param ?arg1 ?description
       
    85         * @return ?description
       
    86         */
       
    87         //?type ?member_function( ?type ?arg1 );
       
    88         
       
    89     protected:  // New functions
       
    90         
       
    91         /**
       
    92         * ?member_description.
       
    93         * @since Series ?XX ?SeriesXX_version
       
    94         * @param ?arg1 ?description
       
    95         * @return ?description
       
    96         */
       
    97         //?type ?member_function( ?type ?arg1 );
       
    98 
       
    99     protected:  // Functions from base classes
       
   100         
       
   101         /**
       
   102         * From ?base_class ?member_description
       
   103         */
       
   104         //?type ?member_function();
       
   105 
       
   106     private:
       
   107 
       
   108         /**
       
   109         * C++ default constructor.
       
   110         */
       
   111         CRIContext();
       
   112 
       
   113         /**
       
   114         * By default Symbian 2nd phase constructor is private.
       
   115         */
       
   116         void ConstructL();
       
   117 
       
   118         // Prohibit copy constructor if not deriving from CBase.
       
   119         // CRIContext( const CRIContext& );
       
   120         // Prohibit assigment operator if not deriving from CBase.
       
   121         // CRIContext& operator=( const CRIContext& );
       
   122 
       
   123     public:     // Data
       
   124     
       
   125     protected:  // Data
       
   126         // ?one_line_short_description_of_data
       
   127         //?data_declaration;
       
   128 
       
   129     private:    // Data
       
   130         // ?one_line_short_description_of_data
       
   131         //?data_declaration;
       
   132          
       
   133         // Reserved pointer for future extension
       
   134         //TAny* iReserved;
       
   135 
       
   136     public:     // Friend classes
       
   137         //?friend_class_declaration;
       
   138     protected:  // Friend classes
       
   139         //?friend_class_declaration;
       
   140     private:    // Friend classes
       
   141         //?friend_class_declaration;
       
   142 
       
   143     };
       
   144 }
       
   145 
       
   146 #endif      // RICONTEXT_H   
       
   147             
       
   148 // End of File