diff -r 51a74ef9ed63 -r ae94777fff8f Symbian3/SDK/Source/GUID-0DEDC917-05C9-5D43-B839-73C043624BE9.dita --- a/Symbian3/SDK/Source/GUID-0DEDC917-05C9-5D43-B839-73C043624BE9.dita Wed Mar 31 11:11:55 2010 +0100 +++ b/Symbian3/SDK/Source/GUID-0DEDC917-05C9-5D43-B839-73C043624BE9.dita Fri Jun 11 12:39:03 2010 +0100 @@ -1,59 +1,59 @@ - - - - - - circularbuffer: -Circular Buffer ExampleThis example demonstrates the how to use the circular buffer classes CCirBuf and CCirBuffer. -
Purpose

This -example application shows how to construct and make use of circular buffers -containing integers, objects of user defined classes and objects of an R class.

-
Download

Click on the following link to download -the example: circularbuffer .zip

Click browse to view the example code.

-
class summary

CCirBuffer CCirBuf

-
Design and -implementation

Class diagram:

- Circular buffers example class diagram - -

The example creates a circular buffer of integers using CCirBuffer::Put() to -add elements and CCirBuffer::Get() to remove an element. -To demonstrate the circular nature of the buffer, the example:

    -
  • adds four elements until -the buffer is full,

  • -
  • tries to adds another -element to the buffer, which fails with a buffer full error message,

  • -
  • removes elements 1 and -2 from the buffer, leaving elements 3 and 4,

  • -
  • adds two new elements -(5 and 6) to the buffer,

  • -
  • removes all elements -(3, 4, 5 and 6) from the buffer.

  • -

Similar steps are performed using CCirBuf to add -(CCirBuf::Add()) and remove (CCirBuf::Remove()) -user-defined objects, and objects of an R class to and from -the buffer.

After removing R class objects from the circular buffer, -they must be closed in order to release the resource held by the R Class objects.

-
Building and -configuring

To build the example:

    -
  • You can build the example -from your IDE or the command line.

    If you use an IDE, import the bld.inf file -of the example into your IDE, and use the build command of the IDE.

    If -you use the command line, open a command prompt, and set the current directory -to the source code directory of the example. You can then build the example -with the SBSv1 build tools with the following commands:

    bldmake -bldfiles

    abld build

    How to use bldmake and How to use abld describe -how to use the SBSv1 build tools.

  • -
  • For the emulator, the -example builds an executable called circularbuffer.exe in -the epoc32\release\winscw\<udeb or urel>\ folder.

  • -
-
Running the -example

The user is prompted to press a key in order to progress -from one function to the next.

+ + + + + + circularbuffer: +Circular Buffer ExampleThis example demonstrates the how to use the circular buffer classes CCirBuf and CCirBuffer. +
Purpose

This +example application shows how to construct and make use of circular buffers +containing integers, objects of user defined classes and objects of an R class.

+
Download

Click on the following link to download +the example: circularbuffer .zip

Click browse to view the example code.

+
class summary

CCirBuffer CCirBuf

+
Design and +implementation

Class diagram:

+ Circular buffers example class diagram + +

The example creates a circular buffer of integers using CCirBuffer::Put() to +add elements and CCirBuffer::Get() to remove an element. +To demonstrate the circular nature of the buffer, the example:

    +
  • adds four elements until +the buffer is full,

  • +
  • tries to adds another +element to the buffer, which fails with a buffer full error message,

  • +
  • removes elements 1 and +2 from the buffer, leaving elements 3 and 4,

  • +
  • adds two new elements +(5 and 6) to the buffer,

  • +
  • removes all elements +(3, 4, 5 and 6) from the buffer.

  • +

Similar steps are performed using CCirBuf to add +(CCirBuf::Add()) and remove (CCirBuf::Remove()) +user-defined objects, and objects of an R class to and from +the buffer.

After removing R class objects from the circular buffer, +they must be closed in order to release the resource held by the R Class objects.

+
Building and +configuring

To build the example:

    +
  • You can build the example +from your IDE or the command line.

    If you use an IDE, import the bld.inf file +of the example into your IDE, and use the build command of the IDE.

    If +you use the command line, open a command prompt, and set the current directory +to the source code directory of the example. You can then build the example +with the SBSv1 build tools with the following commands:

    bldmake +bldfiles

    abld build

    How to use bldmake and How to use abld describe +how to use the SBSv1 build tools.

  • +
  • For the emulator, the +example builds an executable called circularbuffer.exe in +the epoc32\release\winscw\<udeb or urel>\ folder.

  • +
+
Running the +example

The user is prompted to press a key in order to progress +from one function to the next.

\ No newline at end of file