CGAL 6.0 - STL Extensions for CGAL
Loading...
Searching...
No Matches
CGAL::Creator_3< Arg1, Arg2, Arg3, Result > Class Template Reference

#include <CGAL/function_objects.h>

Definition

template<typename Arg1, typename Arg2, typename Arg3, typename Result>
class CGAL::Creator_3< Arg1, Arg2, Arg3, Result >

The class Creator_3 defines types and operations for creating objects from three 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 Result result_type
 type of object to create.
 
result_type operator() (argument_type1 a1, argument_type2 a2, argument_type3 a3) const
 returns result_type(a1, a2, a3).