mirror of https://github.com/CGAL/cgal
44 lines
963 B
C++
44 lines
963 B
C++
// ======================================================================
|
|
//
|
|
// Copyright (c) 1999 The CGAL Consortium
|
|
//
|
|
// This software and related documentation is part of an INTERNAL release
|
|
// of the Computational Geometry Algorithms Library (CGAL). It is not
|
|
// intended for general use.
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
//
|
|
// release :
|
|
// release_date :
|
|
//
|
|
// file : Origin.h
|
|
// package : Kernel_basic
|
|
// revision : $Revision$
|
|
// revision_date : $Date$
|
|
// author(s) : Andreas Fabri
|
|
// Stefan Schirra
|
|
//
|
|
// coordinator : MPI, Saarbruecken
|
|
// ======================================================================
|
|
|
|
#ifndef CGAL_ORIGIN_H
|
|
#define CGAL_ORIGIN_H
|
|
|
|
#include <CGAL/basic.h>
|
|
|
|
CGAL_BEGIN_NAMESPACE
|
|
|
|
class Origin
|
|
{};
|
|
|
|
extern const Origin ORIGIN;
|
|
|
|
class Null_vector
|
|
{};
|
|
|
|
extern const Null_vector NULL_VECTOR;
|
|
|
|
CGAL_END_NAMESPACE
|
|
|
|
#endif // CGAL_ORIGIN_H
|