33 lines
849 B
C++
33 lines
849 B
C++
// Copyright (c) 2000 Max-Planck-Institute Saarbruecken (Germany).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
//
|
|
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Nef_2/include/CGAL/Nef_2/Object_handle.h $
|
|
// $Id: Object_handle.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
//
|
|
// Author(s) : Stefan Schirra
|
|
// Andreas Fabri
|
|
// Geert-Jan Giezeman
|
|
// Michael Seel
|
|
// Sylvain Pion
|
|
// ======================================================================
|
|
|
|
#ifndef CGAL_OBJECT_HANDLE_H
|
|
#define CGAL_OBJECT_HANDLE_H
|
|
|
|
#include <CGAL/license/Nef_2.h>
|
|
|
|
|
|
#include <CGAL/Object.h>
|
|
|
|
namespace CGAL {
|
|
|
|
typedef Object Object_handle;
|
|
|
|
} //namespace CGAL
|
|
|
|
#endif // CGAL_OBJECT_HANDLE_H
|