os/persistentdata/persistentstorage/store/INC/S32STD.INL
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1998-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
//
sl@0
    15
sl@0
    16
// Class TStreamId
sl@0
    17
inline TStreamId::TStreamId(TUint32 aValue)
sl@0
    18
	: iVal(aValue)
sl@0
    19
/** Constructs the object with the specified stream ID value.
sl@0
    20
sl@0
    21
Users of stores do not normally use this function.
sl@0
    22
sl@0
    23
In debug mode, the function checks that the supplied stream ID value is not 
sl@0
    24
greater than the maximum permitted value, and raises a STORE-Store 2 panic 
sl@0
    25
if it is. In release mode, no checking on the supplied value is done.
sl@0
    26
sl@0
    27
The checking of the supplied value is done by a private function implemented 
sl@0
    28
in estor. dll. This means that in debug mode, a call is made into estor.dll, 
sl@0
    29
but in release mode it is not.
sl@0
    30
sl@0
    31
@param aValue The stream ID value. */
sl@0
    32
	{
sl@0
    33
#if defined (_DEBUG)
sl@0
    34
	__DbgChkRange(aValue);
sl@0
    35
#endif
sl@0
    36
	}
sl@0
    37
inline TBool TStreamId::operator==(TStreamId anId) const
sl@0
    38
/** Equality comparison operator. Use this operator to determine whether this stream 
sl@0
    39
id is equal to the specified stream id.
sl@0
    40
sl@0
    41
@param anId The stream id to be compared with this stream id.
sl@0
    42
@return True, if the stream ids are equal; false otherwise */
sl@0
    43
	{return iVal==anId.iVal;}
sl@0
    44
inline TBool TStreamId::operator!=(TStreamId anId) const
sl@0
    45
/** Inequality comparison operator. Use this operator to determine whether this 
sl@0
    46
stream id is unequal to the specified stream id.
sl@0
    47
sl@0
    48
@param anId The stream id to be compared with this stream id.
sl@0
    49
@return True, if the two stream ids are unequal, false otherwise. */
sl@0
    50
	{return iVal!=anId.iVal;}
sl@0
    51
inline void TStreamId::ExternalizeL(RWriteStream& aStream) const
sl@0
    52
/** Externalises an object of this class to a write stream.
sl@0
    53
sl@0
    54
The presence of this function means that the standard templated operator<<() 
sl@0
    55
can be used to externalise objects of this class.
sl@0
    56
sl@0
    57
@param aStream Stream to which the object should be externalised. */
sl@0
    58
	{
sl@0
    59
#if defined (_DEBUG)
sl@0
    60
	__DbgChkRange(iVal);
sl@0
    61
#endif
sl@0
    62
	aStream<<iVal;
sl@0
    63
	}
sl@0
    64
inline TUint32 TStreamId::Value() const
sl@0
    65
/** Gets the stream ID value encapsulated by this object.
sl@0
    66
sl@0
    67
@return The stream ID value. */
sl@0
    68
	{
sl@0
    69
#if defined (_DEBUG)
sl@0
    70
	__DbgChkRange(iVal);
sl@0
    71
#endif
sl@0
    72
	return iVal;
sl@0
    73
	}
sl@0
    74
sl@0
    75
// Class RStoreWriteStream
sl@0
    76
inline RStoreWriteStream::RStoreWriteStream(const MExternalizer<TStreamRef>& anExter)
sl@0
    77
	: RWriteStream(anExter)
sl@0
    78
/** Constructs an object with an externaliser. The store map CStoreMap is an example 
sl@0
    79
of an externalizer.
sl@0
    80
sl@0
    81
@param anExter Specifies an externaliser */
sl@0
    82
	{}
sl@0
    83
sl@0
    84
// Class TSwizzleCBase
sl@0
    85
inline TSwizzleCBase::TSwizzleCBase(TStreamRef aRef)
sl@0
    86
	: iPtr(aRef.Ptr())
sl@0
    87
	{
sl@0
    88
#if defined (_DEBUG)
sl@0
    89
	__DbgChkRef(aRef);
sl@0
    90
#endif
sl@0
    91
    }
sl@0
    92
inline TBool TSwizzleCBase::operator==(const TSwizzleCBase& aSwizzle) const
sl@0
    93
/** Compares for equality with another swizzle.
sl@0
    94
sl@0
    95
Use this operator to determine whether this swizzle represents the same object 
sl@0
    96
as that represented by the specified swizzle.
sl@0
    97
sl@0
    98
Both this swizzle and the specified swizzle must maintain the representation 
sl@0
    99
of their respective objects as either pointers or stream ids.
sl@0
   100
sl@0
   101
If one swizzle maintains the representation of its object as a pointer while 
sl@0
   102
the other swizzle maintains the representation of its object as a stream id, 
sl@0
   103
the comparison is meaningless and always returns false.
sl@0
   104
sl@0
   105
@param aSwizzle A reference to the swizzle to be compared with this swizzle.
sl@0
   106
@return True, if the represented objects are the same; False, otherwise. */
sl@0
   107
	{return iPtr==aSwizzle.iPtr;}
sl@0
   108
inline TBool TSwizzleCBase::operator==(const TAny* aPtr) const
sl@0
   109
/** Compares for equality with an in-memory object.
sl@0
   110
sl@0
   111
Use this operator to determine whether this swizzle represents the same in-memory 
sl@0
   112
object as that represented by the specified pointer.
sl@0
   113
sl@0
   114
This swizzle must maintain the representation of its object as a pointer. 
sl@0
   115
If it maintains the representation of its object as a swizzle, the comparison 
sl@0
   116
is meaningless and always returns false.
sl@0
   117
sl@0
   118
@param aPtr A pointer to the object to be compared with this swizzle.
sl@0
   119
@return True, if the represented objects are the same; False, otherwise. */
sl@0
   120
	{return iPtr==aPtr;}
sl@0
   121
inline TBool TSwizzleCBase::operator!=(const TSwizzleCBase& aSwizzle) const
sl@0
   122
/** Compares for inequality with another swizzle.
sl@0
   123
sl@0
   124
Use this operator to determine whether this swizzle represents a different 
sl@0
   125
object to that represented by the specified swizzle.
sl@0
   126
sl@0
   127
Both this swizzle and the specified swizzle must maintain the representation 
sl@0
   128
of their respective objects as either pointers or stream ids.
sl@0
   129
sl@0
   130
If one swizzle maintains the representation of its object as a pointer while 
sl@0
   131
the other swizzle maintains the representation of its object as a stream id, 
sl@0
   132
the comparison is meaningless and always returns true.
sl@0
   133
sl@0
   134
@param aSwizzle A reference to the swizzle to be compared with this swizzle.
sl@0
   135
@return True, if the represented objects are not the same; False, otherwise */
sl@0
   136
	{return iPtr!=aSwizzle.iPtr;}
sl@0
   137
inline TBool TSwizzleCBase::operator!=(const TAny* aPtr) const
sl@0
   138
/** Compares for inequality with an in-memory object.
sl@0
   139
sl@0
   140
Use this operator to determine whether this swizzle represents a different 
sl@0
   141
in-memory object to that represented by the specified pointer.
sl@0
   142
sl@0
   143
This swizzle must maintain the representation of its object as a pointer. 
sl@0
   144
If it maintains the representation of its object as a swizzle, the comparison 
sl@0
   145
is meaningless and always returns true.
sl@0
   146
sl@0
   147
@param aPtr A pointer to the object to be compared with this swizzle.
sl@0
   148
@return True, if the represented objects are not the same; False, otherwise */
sl@0
   149
	{return iPtr!=aPtr;}
sl@0
   150
inline TBool TSwizzleCBase::IsPtr() const
sl@0
   151
/** Tests whether this swizzle currently represents an object as a pointer.
sl@0
   152
sl@0
   153
@return True, if this swizzle currently maintains the object representation 
sl@0
   154
as a pointer; False, otherwise. Note that if the swizzle is uninitialised, 
sl@0
   155
the value returned by this function is not defined. */
sl@0
   156
	{return IsPtrRep(iPtr);}
sl@0
   157
inline TBool TSwizzleCBase::IsId() const
sl@0
   158
/** Tests whether this swizzle currently represents an object as a stream id.
sl@0
   159
sl@0
   160
@return True, if this swizzle currently maintains the representation of the 
sl@0
   161
object as a stream id; False, otherwise. Note that if the swizzle is uninitialised, 
sl@0
   162
the value returned by this function is not defined. */
sl@0
   163
	{return IsIdRep(iPtr);}
sl@0
   164
inline TSwizzleCBase::TSwizzleCBase(const TAny* aPtr)
sl@0
   165
	: iPtr(aPtr)
sl@0
   166
	{
sl@0
   167
#if defined (_DEBUG)
sl@0
   168
	__DbgChkPtr(aPtr);
sl@0
   169
#endif
sl@0
   170
    }
sl@0
   171
inline const TAny* TSwizzleCBase::Ptr() const
sl@0
   172
	{
sl@0
   173
#if defined (_DEBUG)
sl@0
   174
	__DbgChkPtr(iPtr);
sl@0
   175
#endif
sl@0
   176
	return iPtr;
sl@0
   177
	}
sl@0
   178
inline TBool operator==(const TAny* aPtr,const TSwizzleCBase& aSwizzle)
sl@0
   179
	{return aSwizzle==aPtr;}
sl@0
   180
inline TBool operator!=(const TAny* aPtr,const TSwizzleCBase& aSwizzle)
sl@0
   181
	{return aSwizzle!=aPtr;}
sl@0
   182
sl@0
   183
// Class TSwizzleBase
sl@0
   184
inline TSwizzleBase::TSwizzleBase(TAny* aPtr)
sl@0
   185
	: TSwizzleCBase(aPtr)
sl@0
   186
	{}
sl@0
   187
inline TSwizzleBase::TSwizzleBase(TStreamId anId)
sl@0
   188
	: TSwizzleCBase(anId)
sl@0
   189
	{}
sl@0
   190
inline TAny* TSwizzleBase::Ptr() const
sl@0
   191
	{return (TAny*)TSwizzleCBase::Ptr();}
sl@0
   192
sl@0
   193
// Template class TSwizzle
sl@0
   194
template <class T>
sl@0
   195
inline TSwizzle<T>::TSwizzle(T* aPtr)
sl@0
   196
	: TSwizzleBase(aPtr)
sl@0
   197
/** Constructs a swizzle for a class T type object, represented by a pointer.
sl@0
   198
sl@0
   199
@param aPtr A pointer to a class T type object. */
sl@0
   200
	{}
sl@0
   201
template <class T>
sl@0
   202
inline TSwizzle<T>::TSwizzle(TStreamId anId)
sl@0
   203
	: TSwizzleBase(anId)
sl@0
   204
/** Constructs a swizzle for a class T type object, represented as a stream id.
sl@0
   205
sl@0
   206
@param anId The id of a stream containing the external representation of a 
sl@0
   207
class T type object. */
sl@0
   208
	{}
sl@0
   209
template <class T>
sl@0
   210
inline TSwizzle<T>& TSwizzle<T>::operator=(T* aPtr)
sl@0
   211
/** Sets this swizzle to represent the in-memory type T object, pointed to by the 
sl@0
   212
specified T* pointer.
sl@0
   213
sl@0
   214
@param aPtr A pointer to an object of type T which the swizzle is to represent.
sl@0
   215
@return A reference to this swizzle representing the object of type T. */
sl@0
   216
	{return *this=TSwizzle<T>(aPtr);}
sl@0
   217
template <class T>
sl@0
   218
inline T* TSwizzle<T>::AsPtr() const
sl@0
   219
/** Returns a pointer to the object which this swizzle represents.
sl@0
   220
sl@0
   221
Note that the indirect component selector operator->() can be used to access 
sl@0
   222
members of the represented object.
sl@0
   223
sl@0
   224
@return A pointer to the class T type object represented by this swizzle. */
sl@0
   225
	{return (T*)Ptr();}
sl@0
   226
template <class T>
sl@0
   227
inline TSwizzle<T>::operator T*() const
sl@0
   228
	{return AsPtr();}
sl@0
   229
template <class T>
sl@0
   230
inline T& TSwizzle<T>::operator*() const
sl@0
   231
/** Returns a reference to the type T object which this swizzle represents.
sl@0
   232
sl@0
   233
@return A reference to the type T object represented by this swizzle. */
sl@0
   234
	{return *AsPtr();}
sl@0
   235
template <class T>
sl@0
   236
inline T* TSwizzle<T>::operator->() const
sl@0
   237
/** Gives access to members of the type T object which this swizzle represents.
sl@0
   238
sl@0
   239
Note, use the AsPtr() member function to return a pointer to the object itself.
sl@0
   240
sl@0
   241
@return A pointer to the T type object; not explicitly accessible. */
sl@0
   242
	{return AsPtr();}
sl@0
   243
template <class T>
sl@0
   244
inline void TSwizzle<T>::ExternalizeL(RWriteStream& aStream) const
sl@0
   245
/** Externalises the stream id of the stream associated with this swizzle.
sl@0
   246
sl@0
   247
This function presupposes that: 
sl@0
   248
sl@0
   249
a store map, i.e. an object of type CStoreMap, has been constructed
sl@0
   250
sl@0
   251
the id of the stream containing the external representation of the represented 
sl@0
   252
type T object has been bound to this swizzle and added to the store map.
sl@0
   253
sl@0
   254
the concrete stream referenced by aStream has been constructed, specifying 
sl@0
   255
the store map as an externaliser.
sl@0
   256
sl@0
   257
The presence of this function means that the standard templated operator<<() 
sl@0
   258
can be used.
sl@0
   259
sl@0
   260
@param aStream Stream to which the stream id should be externalised.
sl@0
   261
@see CStoreMap */
sl@0
   262
	{TSwizzleBase::DoExternalizeL(aStream,TExternalizer<T>::Function());}
sl@0
   263
inline TSwizzle<TAny>::TSwizzle(TAny* aPtr)
sl@0
   264
	: TSwizzleBase(aPtr)
sl@0
   265
/** Constructs the swizzle representing the specified untyped object as a pointer.
sl@0
   266
	
sl@0
   267
@param aPtr A pointer to an untyped object which this swizzle is to represent. */
sl@0
   268
	{}
sl@0
   269
inline TSwizzle<TAny>::TSwizzle(TStreamId anId)
sl@0
   270
	: TSwizzleBase(anId)
sl@0
   271
/** Constructs the swizzle for an untyped object, represented as a stream id.
sl@0
   272
	
sl@0
   273
@param anId The id of a stream containing the external representation of the 
sl@0
   274
	untyped object which this swizzle is to represent. */
sl@0
   275
	{}
sl@0
   276
inline TSwizzle<TAny>::TSwizzle(const TSwizzleBase& aSwizzle)
sl@0
   277
	: TSwizzleBase(aSwizzle)
sl@0
   278
/** Constructs the swizzle to represent the untyped object currently represented 
sl@0
   279
	by the specified swizzle.
sl@0
   280
	
sl@0
   281
@param aSwizzle A reference to a swizzle whose representation of an object 
sl@0
   282
	is to be copied to this swizzle */
sl@0
   283
	{}
sl@0
   284
inline TSwizzle<TAny>& TSwizzle<TAny>::operator=(TAny* aPtr)
sl@0
   285
/** Sets this swizzle to represent the in-memory object, pointed to by the specified 
sl@0
   286
	pointer.
sl@0
   287
	
sl@0
   288
@param aPtr A pointer to the untyped object which the swizzle is to represent.
sl@0
   289
@return A reference to this swizzle. */
sl@0
   290
	{return *this=TSwizzle<TAny>(aPtr);}
sl@0
   291
inline TSwizzle<TAny>& TSwizzle<TAny>::operator=(const TSwizzleBase& aSwizzle)
sl@0
   292
	/** Sets the swizzle to represent the untyped object currently represented by the 
sl@0
   293
	specified swizzle.
sl@0
   294
	
sl@0
   295
	@param aSwizzle The swizzle whose representation of an object is to be copied 
sl@0
   296
	to this swizzle.
sl@0
   297
	@return A reference to this swizzle. */
sl@0
   298
	{return *this=TSwizzle<TAny>(aSwizzle);}
sl@0
   299
inline TAny* TSwizzle<TAny>::AsPtr() const
sl@0
   300
/** Returns a pointer to the untyped object that this swizzle represents.
sl@0
   301
	
sl@0
   302
	@return A pointer to the untyped object represented by this swizzle. */
sl@0
   303
	{return Ptr();}
sl@0
   304
inline TSwizzle<TAny>::operator TAny*() const
sl@0
   305
	{return AsPtr();}
sl@0
   306
sl@0
   307
// Template class TSwizzleC
sl@0
   308
template <class T>
sl@0
   309
inline TSwizzleC<T>::TSwizzleC(const T* aPtr)
sl@0
   310
	: TSwizzleCBase(aPtr)
sl@0
   311
/** Constructs a swizzle for a class T type object and represents the object by 
sl@0
   312
pointer.
sl@0
   313
sl@0
   314
@param aPtr A pointer to a class T type object. */
sl@0
   315
	{}
sl@0
   316
template <class T>
sl@0
   317
inline TSwizzleC<T>::TSwizzleC(TStreamId anId)
sl@0
   318
	: TSwizzleCBase(anId)
sl@0
   319
/** Constructs a swizzle for a class T type object and represents the object as 
sl@0
   320
a stream id.
sl@0
   321
sl@0
   322
@param anId The stream id of a stream containing the external representation 
sl@0
   323
of an object of type class T. */
sl@0
   324
	{}
sl@0
   325
template <class T>
sl@0
   326
inline TSwizzleC<T>::TSwizzleC(TSwizzle<T> aSwizzle)
sl@0
   327
	: TSwizzleCBase(aSwizzle)
sl@0
   328
/** Constructs a swizzle for a class T type object that is currently represented 
sl@0
   329
by another swizzle.
sl@0
   330
sl@0
   331
The representation of the class T type object is the same as its representation 
sl@0
   332
by the specified swizzle, i.e. if the specified swizzle represents the object 
sl@0
   333
as a pointer, then this newly constructed swizzle also represents the object 
sl@0
   334
as a pointer.
sl@0
   335
sl@0
   336
@param aSwizzle The swizzle whose representation of the class T type object 
sl@0
   337
is to be copied to this swizzle. */
sl@0
   338
	{}
sl@0
   339
template <class T>
sl@0
   340
inline TSwizzleC<T>& TSwizzleC<T>::operator=(const T* aPtr)
sl@0
   341
/** Sets this swizzle to represent the in-memory type T object, pointed to by the 
sl@0
   342
specified T* pointer.
sl@0
   343
sl@0
   344
@param aPtr A pointer to an object of type T which the swizzle is to represent.
sl@0
   345
@return A reference to this swizzle representing the object of type T.
sl@0
   346
@see TSwizzle::operator=() */
sl@0
   347
	{return *this=TSwizzleC<T>(aPtr);}
sl@0
   348
template <class T>
sl@0
   349
inline const T* TSwizzleC<T>::AsPtr() const
sl@0
   350
/** Returns a constant pointer to the object which this swizzle represents.
sl@0
   351
sl@0
   352
Note:
sl@0
   353
sl@0
   354
The in memory object cannot be changed through this swizzle.
sl@0
   355
sl@0
   356
To access members of the object, the indirect component selector operator->() 
sl@0
   357
can be used.
sl@0
   358
sl@0
   359
@return A const pointer to the class T type object represented by this swizzle. */
sl@0
   360
	{return (const T*)Ptr();}
sl@0
   361
template <class T>
sl@0
   362
inline TSwizzleC<T>::operator const T*() const
sl@0
   363
	{return AsPtr();}
sl@0
   364
template <class T>
sl@0
   365
inline const T& TSwizzleC<T>::operator*() const
sl@0
   366
/** Returns a const reference to the type T object which this swizzle represents.
sl@0
   367
sl@0
   368
@return A const reference to the type T object represented by this swizzle.
sl@0
   369
@see TSwizzle::operator*() */
sl@0
   370
	{return *AsPtr();}
sl@0
   371
template <class T>
sl@0
   372
inline const T* TSwizzleC<T>::operator->() const
sl@0
   373
/** Gives access to members of the type T object which this swizzle represents.
sl@0
   374
sl@0
   375
Note:
sl@0
   376
sl@0
   377
use the AsPtr() member function to return a pointer to the object itself.
sl@0
   378
sl@0
   379
the type T object cannot be changed through this operator.
sl@0
   380
sl@0
   381
@return A const pointer to the T type object; not explicitly accessible.
sl@0
   382
@see TSwizzle::operator->() */
sl@0
   383
	{return AsPtr();}
sl@0
   384
template <class T>
sl@0
   385
inline void TSwizzleC<T>::ExternalizeL(RWriteStream& aStream) const
sl@0
   386
/** Externalises the stream id of the stream associated with this swizzle.
sl@0
   387
sl@0
   388
This function presupposes that: 
sl@0
   389
sl@0
   390
a store map, i.e. an object of type CStoreMap, has been constructed
sl@0
   391
sl@0
   392
the id of the stream containing the external representation of the <class T> 
sl@0
   393
object has been bound to this swizzle and added to the store map.
sl@0
   394
sl@0
   395
the concrete stream referenced by aStream has been constructed, specifying 
sl@0
   396
the store map as an externalizer.
sl@0
   397
sl@0
   398
The presence of this function means that the standard templated operator<<() 
sl@0
   399
can be used.
sl@0
   400
sl@0
   401
@param aStream Stream to which the stream id should be externalised
sl@0
   402
@see CStoreMap */
sl@0
   403
	{TSwizzleCBase::DoExternalizeL(aStream,TExternalizer<T>::Function());}
sl@0
   404
inline TSwizzleC<TAny>::TSwizzleC(const TAny* aPtr)
sl@0
   405
	: TSwizzleCBase(aPtr)
sl@0
   406
/** Constructs the swizzle representing the specified untyped object as a pointer.
sl@0
   407
	
sl@0
   408
@param aPtr A pointer to an untyped object which this swizzle is to represent. */
sl@0
   409
	{}
sl@0
   410
inline TSwizzleC<TAny>::TSwizzleC(TStreamId anId)
sl@0
   411
	: TSwizzleCBase(anId)
sl@0
   412
/** Constructs the swizzle for an untyped object, represented as a stream id.
sl@0
   413
	
sl@0
   414
@param anId The id of a stream containing the external representation of the 
sl@0
   415
	untyped object which this swizzle is to represent. */
sl@0
   416
	{}
sl@0
   417
inline TSwizzleC<TAny>::TSwizzleC(const TSwizzleCBase& aSwizzle)
sl@0
   418
	: TSwizzleCBase(aSwizzle)
sl@0
   419
/** Constructs the swizzle to represent the untyped object currently represented 
sl@0
   420
	by the specified swizzle.
sl@0
   421
	
sl@0
   422
@param aSwizzle The swizzle whose representation of an object is to be copied 
sl@0
   423
	to this swizzle. */
sl@0
   424
	{}
sl@0
   425
inline TSwizzleC<TAny>::TSwizzleC(TStreamRef aRef)
sl@0
   426
	: TSwizzleCBase(aRef)
sl@0
   427
/** Constructs the swizzle from a stream reference.
sl@0
   428
	
sl@0
   429
@param aRef The stream reference. */
sl@0
   430
 	{}
sl@0
   431
inline TSwizzleC<TAny>& TSwizzleC<TAny>::operator=(const TAny* aPtr)
sl@0
   432
/** Sets this swizzle to represent the specified in-memory untyped object.
sl@0
   433
	
sl@0
   434
@param aPtr A pointer to the untyped object that the swizzle is to represent.
sl@0
   435
@return A reference to this swizzle representing the untyped object. */
sl@0
   436
	{return *this=TSwizzleC<TAny>(aPtr);}
sl@0
   437
inline TSwizzleC<TAny>& TSwizzleC<TAny>::operator=(const TSwizzleCBase& aSwizzle)
sl@0
   438
/** Sets this swizzle to represent the untyped object currently represented by the 
sl@0
   439
	specific swizzle.
sl@0
   440
	
sl@0
   441
@param aSwizzle A pointer to the untyped object that the swizzle is to represent.
sl@0
   442
@return A reference to a swizzle whose representation of an object is to be 
sl@0
   443
	copied to this swizzle. */
sl@0
   444
	{return *this=TSwizzleC<TAny>(aSwizzle);}
sl@0
   445
inline const TAny* TSwizzleC<TAny>::AsPtr() const
sl@0
   446
/** Gets a constant pointer to the untyped object that this swizzle represents.
sl@0
   447
	
sl@0
   448
@return A const pointer to the untyped object represented by this swizzle. */
sl@0
   449
	{return Ptr();}
sl@0
   450
inline TSwizzleC<TAny>::operator const TAny*() const
sl@0
   451
	{return AsPtr();}
sl@0
   452