/usr/include/CGAL/utility.h is in libcgal-dev 4.2-5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | // Copyright (c) 2003
// Utrecht University (The Netherlands),
// ETH Zurich (Switzerland),
// INRIA Sophia-Antipolis (France),
// Max-Planck-Institute Saarbruecken (Germany),
// and Tel-Aviv University (Israel). All rights reserved.
//
// 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) : Michael Hoffmann <hoffmann@inf.ethz.ch>
// Lutz Kettner <kettner@mpi-sb.mpg.de>
// Sylvain Pion
#ifndef CGAL_UTILITY_H
#define CGAL_UTILITY_H 1
#include <CGAL/basic.h>
// The Triple and Quadruple classes are NOT RECOMMENDED anymore.
// We recommend that you use cpp11::tuple or cpp11::array instead
// for new uses.
namespace CGAL {
namespace internal {
template <int i, typename T>
struct Tuple_get;
template <typename T>
struct Tuple_get<0, T>
{
typedef typename T::first_type result_type;
static result_type & get(T & t) { return t.first; }
static result_type const & get(T const & t) { return t.first; }
};
template <typename T>
struct Tuple_get<1, T>
{
typedef typename T::second_type result_type;
static result_type & get(T & t) { return t.second; }
static result_type const & get(T const & t) { return t.second; }
};
template <typename T>
struct Tuple_get<2, T>
{
typedef typename T::third_type result_type;
static result_type & get(T & t) { return t.third; }
static result_type const & get(T const & t) { return t.third; }
};
template <typename T>
struct Tuple_get<3, T>
{
typedef typename T::fourth_type result_type;
static result_type & get(T & t) { return t.fourth; }
static result_type const & get(T const & t) { return t.fourth; }
};
}
//+---------------------------------------------------------------------+
//| Triple class |
//+---------------------------------------------------------------------+
template <class T1, class T2, class T3>
class Triple
{
typedef Triple<T1, T2, T3> Self;
public:
typedef T1 first_type;
typedef T2 second_type;
typedef T3 third_type;
T1 first;
T2 second;
T3 third;
Triple() {}
Triple(const T1& a, const T2& b, const T3& c)
: first(a), second(b), third(c)
{}
template <class U, class V, class W>
Triple(const U& a, const V& b, const W& c)
: first(a), second(b), third(c)
{}
template <class U, class V, class W>
Triple& operator=(const Triple<U, V, W> &t) {
first = t.first;
second = t.second;
third = t.third;
return *this;
}
template < int i >
typename internal::Tuple_get<i, Self>::result_type const &
get() const
{
return internal::Tuple_get<i, Self>::get(*this);
}
template < int i >
typename internal::Tuple_get<i, Self>::result_type &
get()
{
return internal::Tuple_get<i, Self>::get(*this);
}
};
template <class T1, class T2, class T3>
inline
Triple<T1, T2, T3> make_triple(const T1& x, const T2& y, const T3& z)
{
return Triple<T1, T2, T3>(x, y, z);
}
template <class T1, class T2, class T3>
inline
Triple<T1, T2, T3> make_tuple(const T1& x, const T2& y, const T3& z)
{
return Triple<T1, T2, T3>(x, y, z);
}
template <class T1, class T2, class T3>
inline bool operator==(const Triple<T1, T2, T3>& x,
const Triple<T1, T2, T3>& y)
{
return ( (x.first == y.first) &&
(x.second == y.second) &&
(x.third == y.third) );
}
template <class T1, class T2, class T3>
inline bool operator!=(const Triple<T1, T2, T3>& x,
const Triple<T1, T2, T3>& y)
{
return !(x == y);
}
template <class T1, class T2, class T3>
inline
bool operator<(const Triple<T1, T2, T3>& x,
const Triple<T1, T2, T3>& y)
{
return ( x.first < y.first ||
( !(y.first < x.first) &&
( x.second < y.second ||
( !(y.second < x.second) && x.third < y.third ) ) ) );
}
//+---------------------------------------------------------------------+
//| Quadruple class |
//+---------------------------------------------------------------------+
template <class T1, class T2, class T3, class T4>
class Quadruple
{
typedef Quadruple<T1, T2, T3, T4> Self;
public:
typedef T1 first_type;
typedef T2 second_type;
typedef T3 third_type;
typedef T4 fourth_type;
T1 first;
T2 second;
T3 third;
T4 fourth;
Quadruple() {}
Quadruple(const T1& a, const T2& b, const T3& c, const T4& d)
: first(a), second(b), third(c), fourth(d)
{}
template <class U, class V, class W, class X>
Quadruple(const U& a, const V& b, const W& c, const X& d)
: first(a), second(b), third(c), fourth(d)
{}
template <class U, class V, class W, class X>
Quadruple& operator=(const Quadruple<U, V, W, X> &q) {
first = q.first;
second = q.second;
third = q.third;
fourth = q.fourth;
return *this;
}
template < int i >
typename internal::Tuple_get<i, Self>::result_type const &
get() const
{
return internal::Tuple_get<i, Self>::get(*this);
}
template < int i >
typename internal::Tuple_get<i, Self>::result_type &
get()
{
return internal::Tuple_get<i, Self>::get(*this);
}
};
template <class T1, class T2, class T3, class T4>
inline
Quadruple<T1, T2, T3, T4>
make_quadruple(const T1& x, const T2& y, const T3& z, const T4& zz)
{
return Quadruple<T1, T2, T3, T4>(x, y, z, zz);
}
template <class T1, class T2, class T3, class T4>
inline
Quadruple<T1, T2, T3, T4>
make_tuple(const T1& x, const T2& y, const T3& z, const T4& zz)
{
return Quadruple<T1, T2, T3, T4>(x, y, z, zz);
}
template <class T1, class T2, class T3, class T4>
inline
bool
operator==(const Quadruple<T1, T2, T3, T4>& x,
const Quadruple<T1, T2, T3, T4>& y)
{
return ( (x.first == y.first) &&
(x.second == y.second) &&
(x.third == y.third) &&
(x.fourth == y.fourth) );
}
template <class T1, class T2, class T3, class T4>
inline
bool
operator!=(const Quadruple<T1, T2, T3, T4>& x,
const Quadruple<T1, T2, T3, T4>& y)
{
return ! (x == y);
}
template <class T1, class T2, class T3, class T4>
inline
bool
operator<(const Quadruple<T1, T2, T3, T4>& x,
const Quadruple<T1, T2, T3, T4>& y)
{
return ( x.first < y.first ||
( !(y.first < x.first) &&
( x.second < y.second ||
( !(y.second < x.second) &&
( x.third < y.third ||
(!(y.third < x.third) && x.fourth < y.fourth)) ) ) ) );
}
} //namespace CGAL
#endif // CGAL_UTILITY_H
|