Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

template<typename T>
class Geo::GeoQueueEnumInterface

Any class which wishes to use the queue Walk function must inherit from this class to define its callback interface.

Functions


Anchor
a292cd238dbd8151cce35ffd0c4b05768
a292cd238dbd8151cce35ffd0c4b05768

virtual bool Geo::GeoQueueEnumInterface< T >::GeoQueueEnumCallback

...

public: bool GeoQueueEnumCallback
(
    const T & object,
    void * context
)

...

Callback.

Parameters
[in]object

The object in the GeoQueue being processed.

[in]context

A void* passed by the Enumerate() caller containing user data.

Returns

false if the Enumerate() call should stop, true to continue processing.