class TBuf : public TBufBase16 |
A build-independent modifiable buffer descriptor.
This is a descriptor class which provides a buffer of fixed length for containing, accessing and manipulating TUint16 or TUint8 data, depending on the build.
The class is intended for instantiation. The data that the descriptor represents is part of the descriptor object itself.
The class is templated, based on an integer value which determines the size of the data area created as part of the buffer descriptor object; this is also the maximum length of the descriptor.
The data is intended to be both accessed and modified. The base classes provide the functions through which the data is accessed.
This class derives from TBufCBase16 for a Unicode, non-kernel build, but derives from TBufCBase8 for a non-Unicode build.
Public Member Functions | |
---|---|
TBuf() | |
TBuf(TInt) | |
TBuf(const TText *) | |
TBuf(const TDesC &) | |
TBuf< S > & | operator=(const TText *) |
TBuf< S > & | operator=(const TDesC &) |
TBuf< S > & | operator=(const TBuf< S > &) |
Inherited Enumerations | |
---|---|
TDesC16:TPrefix |
Private Attributes | |
---|---|
TText | iBuf |
Inherited Attributes | |
---|---|
TDes16::__DECLARE_TEST | |
TDes16::iMaxLength |
TBuf | ( | ) | [inline] |
Creates a build-independent modifiable buffer descriptor which contains no data.
The integer template parameter determines the size of the data area that is created as part of the object, and defines the descriptor's maximum length.
TBuf | ( | TInt | aLength | ) | [inline, explicit] |
Constructs an empty build independent modifiable buffer descriptor and sets its length to the specified value.
No data is assigned to the descriptor.
The integer template parameter determines the size of the data area created as part of the object and defines the descriptor's maximum length.
TInt aLength | The length of this modifiable buffer descriptor. |
TBuf | ( | const TText * | aString | ) | [inline] |
Constructs the build-independent modifiable buffer descriptor from a zero terminated string.
The integer template parameter determines the size of the data area which is created as part of this object.
The string, excluding the zero terminator, is copied into this buffer descriptor's data area. The length of this buffer descriptor is set to the length of the string, excluding the zero terminator.
const TText * aString | A pointer to a zero terminated string. |
TBuf | ( | const TDesC & | aDes | ) | [inline] |
Constructs the build-independent modifiable buffer descriptor from any existing build-independent descriptor.
The integer template parameter determines the size of the data area created as part of this object, and defines the descriptor's maximum length.
Data is copied from the source descriptor into this modifiable buffer descriptor and the length of this modifiable buffer descriptor is set to the length of the source descriptor.
const TDesC & aDes | The source build independent non-modifiable descriptor. |
TBuf< S > & | operator= | ( | const TText * | aString | ) | [inline] |
const TText * aString |
TBuf< S > & | operator= | ( | const TDesC & | aDes | ) | [inline] |
Copies data into this descriptor replacing any existing data.
The length of this descriptor is set to reflect the new data.
const TDesC & aDes | A 16-bit non-modifiable descriptor. |
TBuf< S > & | operator= | ( | const TBuf< S > & | aBuf | ) | [inline] |
const TBuf< S > & aBuf |
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.