Symbian3/SDK/Source/GUID-0446FD98-E0A0-5E6A-B056-AF54172B7453.dita
changeset 0 89d6a7a84779
equal deleted inserted replaced
-1:000000000000 0:89d6a7a84779
       
     1 <?xml version="1.0" encoding="utf-8"?>
       
     2 <!-- Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies) All rights reserved. -->
       
     3 <!-- This component and the accompanying materials are made available under the terms of the License 
       
     4 "Eclipse Public License v1.0" which accompanies this distribution, 
       
     5 and is available at the URL "http://www.eclipse.org/legal/epl-v10.html". -->
       
     6 <!-- Initial Contributors:
       
     7     Nokia Corporation - initial contribution.
       
     8 Contributors: 
       
     9 -->
       
    10 <!DOCTYPE concept
       
    11   PUBLIC "-//OASIS//DTD DITA Concept//EN" "concept.dtd">
       
    12 <concept id="GUID-0446FD98-E0A0-5E6A-B056-AF54172B7453" xml:lang="en"><title>Using
       
    13 CArrayPak&lt;TAny&gt;</title><shortdesc>The class is useful for constructing an array of variable length
       
    14 buffers, where the length is decided at run time. </shortdesc><prolog><metadata><keywords/></metadata></prolog><conbody>
       
    15 <section id="GUID-65CC02B4-A4FD-4A7C-9D93-BF92A1B9DDAB"><title>Arrays whose type is not known until class instantiation</title> <p>The
       
    16 class is useful for constructing an array of variable length buffers, where
       
    17 the length is decided at run time. It is also useful as a data member of a
       
    18 base class in a thin template class/base class pair, where the type of the
       
    19 array element is not known until the owning thin template class is instantiated.</p> <p>For
       
    20 example, to implement a stack of packed (variable length) objects of type <codeph>T</codeph>.</p> <codeblock id="GUID-C6370DDF-44D6-52BA-A0C3-898F66918210" xml:space="preserve">class CExampleBase : public CBase
       
    21  {
       
    22 public :
       
    23  ...
       
    24 protected :
       
    25  ...
       
    26  void  PushL(const TAny* aPtr);
       
    27  TAny* Pop();
       
    28 private :
       
    29  CArrayPak&lt;TAny&gt; iArray;
       
    30  }</codeblock> <codeblock id="GUID-0D3E2CBC-E9E5-551B-8704-A48D63D5901A" xml:space="preserve">template &lt;class T&gt;
       
    31 class CExample : public CExampleBase
       
    32  {
       
    33 public :
       
    34  ...
       
    35  inline void PushL(const T* aPtr);
       
    36  inline T*   Pop();
       
    37  }</codeblock> </section>
       
    38 </conbody></concept>