ncdengine/provider/protocol/inc/ncd_pp_datablockimpl.h
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 2006 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 #ifndef C_NCDPREMINETPROTOCOLDATABLOCKIMPL_H
       
    20 #define C_NCDPREMINETPROTOCOLDATABLOCKIMPL_H
       
    21 
       
    22 #include "ncd_pp_datablock.h"
       
    23 
       
    24 class CNcdPreminetProtocolDataBlockImpl : public CBase,
       
    25                                           public MNcdPreminetProtocolDataBlock
       
    26     {
       
    27 public:
       
    28     static CNcdPreminetProtocolDataBlockImpl* NewL();
       
    29     static CNcdPreminetProtocolDataBlockImpl* NewLC();
       
    30     void ConstructL();
       
    31     ~CNcdPreminetProtocolDataBlockImpl();
       
    32 
       
    33 public: // From MNcdPreminetProtocolDataBlock
       
    34 
       
    35     const TDesC& Id() const;
       
    36     const TDesC& NameSpace() const;
       
    37     const TDesC8& Content() const;
       
    38 
       
    39 public:
       
    40     HBufC* iId;
       
    41     HBufC* iNameSpace;
       
    42     HBufC8* iContent;
       
    43     };
       
    44 
       
    45 #endif