os/ossrv/lowlevellibsandfws/apputils/inc/BAMDESCA.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Started by DavidW, March 1996
sl@0
    15
// Mixin descriptor array
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#if !defined(__BAMDESCA_H__)
sl@0
    20
#define __BAMDESCA_H__
sl@0
    21
sl@0
    22
#if !defined(__E32STD_H__)
sl@0
    23
#include <e32std.h>
sl@0
    24
#endif
sl@0
    25
sl@0
    26
sl@0
    27
sl@0
    28
class MDesC8Array
sl@0
    29
/** 
sl@0
    30
Interface class for 8 bit descriptor arrays. 
sl@0
    31
It should be inherited by classes which implement this protocol.
sl@0
    32
sl@0
    33
This protocol is implemented by class CDesC8Array and the concrete class CPtrC8Array. 
sl@0
    34
@publishedAll
sl@0
    35
@released
sl@0
    36
*/
sl@0
    37
    {
sl@0
    38
public:
sl@0
    39
	/** Destructor. */
sl@0
    40
    virtual ~MDesC8Array() {}
sl@0
    41
	/** Requirements
sl@0
    42
	
sl@0
    43
	Returns the number of descriptor elements in a descriptor array.
sl@0
    44
	
sl@0
    45
	@return The number of descriptor elements in a descriptor array. */
sl@0
    46
    virtual TInt MdcaCount() const =0;
sl@0
    47
sl@0
    48
	/** Requirements
sl@0
    49
	
sl@0
    50
	Indexes into a descriptor array.
sl@0
    51
	
sl@0
    52
	@param aIndex The position of the descriptor element within a descriptor array. 
sl@0
    53
	The position is relative to zero; i.e. zero implies the first descriptor element 
sl@0
    54
	in a descriptor array. 
sl@0
    55
	@return An 8 bit non-modifiable pointer descriptor representing the descriptor 
sl@0
    56
	element located at position aIndex within a descriptor array. */
sl@0
    57
    virtual TPtrC8 MdcaPoint(TInt aIndex) const =0;
sl@0
    58
    };
sl@0
    59
sl@0
    60
sl@0
    61
class MDesC16Array
sl@0
    62
/**
sl@0
    63
Interface class for 16 bit descriptor arrays. It should be inherited by classes 
sl@0
    64
which implement this protocol.
sl@0
    65
This protocol is implemented by class CDesC16Array and the concrete class 
sl@0
    66
CPtrC16Array. 
sl@0
    67
@publishedAll
sl@0
    68
@released
sl@0
    69
*/
sl@0
    70
    {
sl@0
    71
public:
sl@0
    72
	/** Destructor. */
sl@0
    73
    virtual ~MDesC16Array() {}
sl@0
    74
sl@0
    75
	/** Requirements
sl@0
    76
	
sl@0
    77
	Returns the number of descriptor elements in a descriptor array.
sl@0
    78
	
sl@0
    79
	@return The number of descriptor elements in a descriptor array. */
sl@0
    80
    virtual TInt MdcaCount() const =0;
sl@0
    81
	/** Requirements
sl@0
    82
	
sl@0
    83
	Indexes into a descriptor array.
sl@0
    84
	
sl@0
    85
	@param aIndex The position of the descriptor element within a descriptor array. 
sl@0
    86
	The position is relative to zero; i.e. zero implies the first descriptor element 
sl@0
    87
	in a descriptor array. 
sl@0
    88
	@return A 16 bit non-modifiable pointer descriptor representing the descriptor 
sl@0
    89
	element located at position aIndex within a descriptor array. */
sl@0
    90
    virtual TPtrC16 MdcaPoint(TInt aIndex) const =0;
sl@0
    91
    };
sl@0
    92
sl@0
    93
sl@0
    94
// The definitions below are macros rather than typedefs to avoid generating
sl@0
    95
// warning C4097 every time the generic mixin class is used in a class
sl@0
    96
// definition.
sl@0
    97
sl@0
    98
#if defined(_UNICODE)
sl@0
    99
/** 
sl@0
   100
Build independent interface class for descriptor arrays.
sl@0
   101
sl@0
   102
A 16 bit build variant is generated for a Unicode build and an 8 bit build 
sl@0
   103
variant generated for a non-Unicode build.
sl@0
   104
sl@0
   105
This build independent type should always be used unless an explicit 8 bit 
sl@0
   106
or 16 bit build variant is required.
sl@0
   107
sl@0
   108
@see MDesC16Array
sl@0
   109
@see MDesC8Array 
sl@0
   110
@publishedAll
sl@0
   111
@released
sl@0
   112
*/
sl@0
   113
#define MDesCArray MDesC16Array
sl@0
   114
//typedef MDesC16Array MDesCArray;
sl@0
   115
#else
sl@0
   116
/** 
sl@0
   117
Build independent interface class for descriptor arrays.
sl@0
   118
sl@0
   119
A 16 bit build variant is generated for a Unicode build and an 8 bit build 
sl@0
   120
variant generated for a non-Unicode build.
sl@0
   121
sl@0
   122
This build independent type should always be used unless an explicit 8 bit 
sl@0
   123
or 16 bit build variant is required.
sl@0
   124
sl@0
   125
@see MDesC16Array
sl@0
   126
@see MDesC8Array
sl@0
   127
@publishedAll
sl@0
   128
@released
sl@0
   129
*/
sl@0
   130
#define MDesCArray MDesC8Array
sl@0
   131
//typedef MDesC8Array  MDesCArray;
sl@0
   132
#endif
sl@0
   133
sl@0
   134
sl@0
   135
#endif // __BAMDESCA_H__
sl@0
   136