1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
.TH Functor_h 3 "1 Dec 2001" "ACE" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Functor_h \-
.SH SYNOPSIS
.br
.PP
\fC#include "ace/pre.h"\fR
.br
\fC#include "ace/ACE.h"\fR
.br
\fC#include "ace/Functor_T.h"\fR
.br
\fC#include "ace/post.h"\fR
.br
.SS Compounds
.in +1c
.ti -1c
.RI "class \fBACE_Command_Base\fR"
.br
.ti -1c
.RI "class \fBACE_Hash< char >\fR"
.br
.in -1c
.SH DETAILED DESCRIPTION
.PP
.PP
\fBFunctor.h\fR,v 4.19 2000/11/01 22:16:22 coryan Exp
.PP
Non-templatized classes and class template specializations for implementing function objects that are used in various places in \fBACE\fR. There are currently two major categories of function objects in \fBACE\fR: GoF Command Pattern objects, and STL-style functors for comparison of container elements. The command objects are invoked via an execute () method, while the STL-style functors are invoked via an operator() () method. Non-templatized classes for implementing the GoF Command Pattern, also known as functors or function objects.
.PP
\fBAuthor(s): \fR
.in +1c
Chris Gill <cdgill@cs.wustl.edu> , Based on Command Pattern implementations originally done by , Carlos O'Ryan <coryan@cs.wustl.edu> , Douglas C. Schmidt <schmidt@cs.wustl.edu> , Sergio Flores-Gaitan <sergio@cs.wustl.edu> , and on STL-style functor implementations originally done by , Irfan Pyarali <irfan@cs.wustl.edu>
.PP
.SH AUTHOR
.PP
Generated automatically by Doxygen for ACE from the source code.
|