sm_decorator_traits.h
来自「CGAL is a collaborative effort of severa」· C头文件 代码 · 共 66 行
H
66 行
// Copyright (c) 1997-2002 Max-Planck-Institute Saarbruecken (Germany).// All rights reserved.//// This file is part of CGAL (www.cgal.org); you may redistribute it under// the terms of the Q Public License version 1.0.// See the file LICENSE.QPL distributed with CGAL.//// 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.//// $Source: /CVSROOT/CGAL/Packages/Nef_S2/include/CGAL/Nef_S2/SM_decorator_traits.h,v $// $Revision: 1.1.4.1 $ $Date: 2004/12/06 12:44:01 $// $Name: $//// Author(s) : Peter Hachenberger <hachenberger@mpi-sb.mpg.de>#ifndef SM_DECORATOR_TRAITS_H#define SM_DECORATOR_TRAITS_Htemplate <class Refs_>class SM_decorator_traits { typedef Refs_ Refs; public: typedef typename Refs::SVertex_handle SVertex_handle; typedef typename Refs::SHalfedge_handle SHalfedge_handle; typedef typename Refs::SHalfloop_handle SHalfloop_handle; typedef typename Refs::SFace_handle SFace_handle; typedef typename Refs::SVertex_iterator SVertex_iterator; typedef typename Refs::SHalfedge_iterator SHalfedge_iterator; typedef typename Refs::SHalfloop_iterator SHalfloop_iterator; typedef typename Refs::SFace_iterator SFace_iterator; typedef typename Refs::SHalfedge_around_svertex_circulator SHalfedge_around_svertex_circulator; typedef typename Refs::SHalfedge_around_sface_circulator SHalfedge_around_sface_circulator; typedef typename Refs::SFace_cycle_iterator SFace_cycle_iterator;};template <class Refs_>class SM_decorator_const_traits { typedef Refs_ Refs; public: typedef typename Refs::SVertex_const_handle SVertex_handle; typedef typename Refs::SHalfedge_const_handle SHalfedge_handle; typedef typename Refs::SHalfloop_const_handle SHalfloop_handle; typedef typename Refs::SFace_const_handle SFace_handle; typedef typename Refs::SVertex_const_iterator SVertex_iterator; typedef typename Refs::SHalfedge_const_iterator SHalfedge_iterator; typedef typename Refs::SHalfloop_const_iterator SHalfloop_iterator; typedef typename Refs::SFace_const_iterator SFace_iterator; typedef typename Refs::SHalfedge_around_svertex_const_circulator SHalfedge_around_svertex_circulator; typedef typename Refs::SHalfedge_around_sface_const_circulator SHalfedge_around_sface_circulator; typedef typename Refs::SFace_cycle_const_iterator SFace_cycle_iterator;};#endif // SM_DECORATOR_TRAITS_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?