brandingserver/inc/tbselementiterator.h
changeset 0 e6b17d312c8b
child 21 cfd5c2994f10
equal deleted inserted replaced
-1:000000000000 0:e6b17d312c8b
       
     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: tbselementiterator.h
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef TBSELEMENTITERATOR_H
       
    21 #define TBSELEMENTITERATOR_H
       
    22 
       
    23 #include <mbselement.h>
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 /**
       
    28 *
       
    29 *
       
    30 *  @lib
       
    31 *  @since
       
    32 */
       
    33 
       
    34 class MBSElement;
       
    35 
       
    36 
       
    37 class TBSElementIterator
       
    38     {
       
    39     public: // New functions
       
    40 
       
    41 		IMPORT_C MBSElement& Next();
       
    42 
       
    43         /**
       
    44         * C++ default constructor.
       
    45         */
       
    46         IMPORT_C TBSElementIterator( const TDesC& aElementId );
       
    47 
       
    48     private:
       
    49     	TInt iIndex;
       
    50     	const TDesC& iElementId;
       
    51     	};
       
    52 
       
    53 #endif      // TBSELEMENTITERATOR_H
       
    54 
       
    55 // End of File