omadrm/drmengine/roap/inc/JoinDomainRespParser.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 JOINDOMAINRESPPARSER_H
       
    21 #define JOINDOMAINRESPPARSER_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include "RespParser.h"
       
    25 
       
    26 namespace Roap
       
    27 {
       
    28 
       
    29 // CONSTANTS
       
    30 //const ?type ?constant_var = ?constant;
       
    31 
       
    32 // MACROS
       
    33 //#define ?macro ?macro_def
       
    34 
       
    35 // DATA TYPES
       
    36 //enum ?declaration
       
    37 //typedef ?declaration
       
    38 //extern ?data_type;
       
    39 
       
    40 // FUNCTION PROTOTYPES
       
    41 //?type ?function_name(?arg_list);
       
    42 
       
    43 // FORWARD DECLARATIONS
       
    44 //class ?FORWARD_CLASSNAME;
       
    45 
       
    46 class CJoinDomainResp;
       
    47 
       
    48 // CLASS DECLARATION
       
    49 
       
    50 /**
       
    51 *  ?one_line_short_description.
       
    52 *  ?other_description_lines
       
    53 *
       
    54 *  @lib ?library
       
    55 *  @since Series ?XX ?SeriesXX_version
       
    56 */
       
    57 class TJoinDomainRespParser : public MRespParser
       
    58     {
       
    59     public: // Constructors
       
    60 
       
    61         TJoinDomainRespParser(
       
    62             CJoinDomainResp* aResponse);
       
    63 
       
    64     public: // New functions
       
    65         
       
    66         /**
       
    67         * ?member_description.
       
    68         * @since Series ?XX ?SeriesXX_version
       
    69         * @param ?arg1 ?description
       
    70         * @return ?description
       
    71         */
       
    72         //?type ?member_function( ?type ?arg1 );
       
    73 
       
    74     public: // Functions from base classes
       
    75 
       
    76         /**
       
    77         * From ?base_class ?member_description.
       
    78         * @since Series ?XX ?SeriesXX_version
       
    79         * @param ?arg1 ?description
       
    80         * @return ?description
       
    81         */
       
    82         virtual void OnStartElementL(
       
    83             CRoapParser& aParser,
       
    84             TInt aState,
       
    85             const RTagInfo& aElement,
       
    86             const RAttributeArray& aAttributes);
       
    87 
       
    88         virtual void OnEndElementL(
       
    89             CRoapParser& aParser,
       
    90             TInt aState,
       
    91             const RTagInfo& aElement);
       
    92         
       
    93     protected:  // New functions
       
    94         
       
    95         /**
       
    96         * ?member_description.
       
    97         * @since Series ?XX ?SeriesXX_version
       
    98         * @param ?arg1 ?description
       
    99         * @return ?description
       
   100         */
       
   101         //?type ?member_function( ?type ?arg1 );
       
   102 
       
   103     protected:  // Functions from base classes
       
   104         
       
   105         /**
       
   106         * From ?base_class ?member_description
       
   107         */
       
   108         //?type ?member_function();
       
   109 
       
   110     private:
       
   111 
       
   112     public:     // Data
       
   113         // ?one_line_short_description_of_data
       
   114         //?data_declaration;
       
   115         CJoinDomainResp* iResponse;
       
   116     
       
   117     protected:  // Data
       
   118         // ?one_line_short_description_of_data
       
   119         //?data_declaration;
       
   120 
       
   121     private:    // Data
       
   122         // ?one_line_short_description_of_data
       
   123         //?data_declaration;
       
   124          
       
   125         // Reserved pointer for future extension
       
   126         //TAny* iReserved;
       
   127 
       
   128     public:     // Friend classes
       
   129         //?friend_class_declaration;
       
   130     protected:  // Friend classes
       
   131         //?friend_class_declaration;
       
   132     private:    // Friend classes
       
   133         //?friend_class_declaration;
       
   134 
       
   135     };
       
   136 }
       
   137 
       
   138 #endif      // JOINDOMAINRESPPARSER_H   
       
   139             
       
   140 // End of File