// Copyright (c) 2014 // INRIA Saclay-Ile de France (France) // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 3 of the License, // or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // // Author(s) : Marc Glisse #ifndef CGAL_WRAPPER_REF_COUNT_OBJ_H #define CGAL_WRAPPER_REF_COUNT_OBJ_H #include #include #include #include #include #include #include #include #ifndef CGAL_CXX11 #include #endif #include // no need for a fancy interface here, people can use the Point_d wrapper on // top. namespace CGAL { template class Ref_count_obj { typedef typename R_::Kernel_base Kbase; typedef typename Get_functor >::type CBase; typedef Ref_count_obj Self; CGAL_static_assertion((boost::is_same::type>::value)); public: typedef R_ R; typedef Tag_true Is_wrapper; typedef typename R_::Default_ambient_dimension Ambient_dimension; //typedef Dimension_tag<0> Feature_dimension; typedef typename Get_type::type Rep; typedef Handle_for Data; private: Data data; public: const Rep& rep() const { return CGAL::get_pointee_or_identity(data); } #ifdef CGAL_CXX11 template::type...>,std::tuple >::value>::type> explicit Ref_count_obj(U&&...u) : data(Eval_functor(),CBase(),std::forward(u)...){} template explicit Ref_count_obj(Eval_functor&&,F&&f,U&&...u) : data(Eval_functor(),std::forward(f),std::forward(u)...){} // try not to use these Ref_count_obj(Rep const& v) : data(v) {} Ref_count_obj(Rep& v) : data(static_cast(v)) {} Ref_count_obj(Rep&& v) : data(std::move(v)) {} // Do we really need this for point? // // this one should be implicit // Ref_count_obj(Origin const& v) // : data(Eval_functor(),CBase(),v) {} // Ref_count_obj(Origin& v) // : data(Eval_functor(),CBase(),v) {} // Ref_count_obj(Origin&& v) // : data(Eval_functor(),CBase(),std::move(v)) {} #else Ref_count_obj() : data(Eval_functor(),CBase()) {} Ref_count_obj(Rep const& v) : data(v) {} // try not to use it #define CGAL_CODE(Z,N,_) template \ explicit Ref_count_obj(BOOST_PP_ENUM_BINARY_PARAMS(N,T,const&t)) \ : data(Eval_functor(),CBase(),BOOST_PP_ENUM_PARAMS(N,t)) {} \ \ template \ Ref_count_obj(Eval_functor,F const& f,BOOST_PP_ENUM_BINARY_PARAMS(N,T,const&t)) \ : data(Eval_functor(),f,BOOST_PP_ENUM_PARAMS(N,t)) {} BOOST_PP_REPEAT_FROM_TO(1,11,CGAL_CODE,_) #undef CGAL_CODE template Ref_count_obj(Eval_functor,F const& f) : data(Eval_functor(),f) {} // // this one should be implicit // Ref_count_obj(Origin const& o) // : data(Eval_functor(),CBase(),o) {} #endif }; } //namespace CGAL #endif