\( \newcommand{\E}{\mathrm{E}} \) \( \newcommand{\A}{\mathrm{A}} \) \( \newcommand{\R}{\mathrm{R}} \) \( \newcommand{\N}{\mathrm{N}} \) \( \newcommand{\Q}{\mathrm{Q}} \) \( \newcommand{\Z}{\mathrm{Z}} \) \( \def\ccSum #1#2#3{ \sum_{#1}^{#2}{#3} } \def\ccProd #1#2#3{ \sum_{#1}^{#2}{#3} }\)
CGAL 4.8.2 - STL Extensions for CGAL
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
CGAL::Creator_4< Arg1, Arg2, Arg3, Arg4, Result > Class Template Reference

#include <CGAL/function_objects.h>

Definition

The class Creator_4 defines types and operations for creating objects from four arguments.

Template Parameters
Resultmust define a corresponding constructor.

Requirements

typedef Arg1 argument1_type
 type of first argument.
 
typedef Arg2 argument2_type
 type of second argument.
 
typedef Arg3 argument3_type
 type of third argument.
 
typedef Arg4 argument4_type
 type of 4th argument.
 
typedef Result result_type
 type of object to create.
 
result_type operator() (argument_type1 a1, argument_type2 a2, argument_type3 a3, argument_type4 a4) const
 returns result_type(a1, a2, a3, a4).