Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Function template visitor_ptr

boost::visitor_ptr —

Returns a visitor object that adapts function pointers for use as a static visitor.

Synopsis

template<typename R, typename T> visitor_ptr_t<T,R> visitor_ptr(R (*)(T));

Description

Constructs and returns a visitor_ptr_t adaptor over the given function.

Returns: Returns a visitor_ptr_t visitor object that, when applied, invokes the given function.
Throws: Will not throw. (Note, however, that the returned visitor object may throw when applied.)
Copyright © 2002, 2003 Eric Friedman, Itay Maman

PrevUpHomeNext