mirror of https://github.com/CGAL/cgal
44 lines
1006 B
C++
44 lines
1006 B
C++
// Copyright (c) 2023 GeometryFactory Sarl (France).
|
|
// All rights reserved.
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
// Author(s) : Laurent Rineau
|
|
|
|
#ifndef CGAL_BASE_WITH_TIME_STAMP_H
|
|
#define CGAL_BASE_WITH_TIME_STAMP_H
|
|
|
|
#include <CGAL/tags.h> // for Tag_true
|
|
#include <cstdint> // for std::size_t
|
|
#include <utility> // for std::forward
|
|
|
|
namespace CGAL {
|
|
|
|
template <typename B_w_ts_base>
|
|
class Base_with_time_stamp : public B_w_ts_base {
|
|
std::size_t time_stamp_ = std::size_t(-2);
|
|
public:
|
|
using B_w_ts_base::B_w_ts_base;
|
|
|
|
using Has_timestamp = CGAL::Tag_true;
|
|
|
|
std::size_t time_stamp() const {
|
|
return time_stamp_;
|
|
}
|
|
void set_time_stamp(const std::size_t& ts) {
|
|
time_stamp_ = ts;
|
|
}
|
|
|
|
template < class TDS >
|
|
struct Rebind_TDS {
|
|
typedef typename B_w_ts_base::template Rebind_TDS<TDS>::Other Base2;
|
|
typedef Base_with_time_stamp<Base2> Other;
|
|
};
|
|
};
|
|
|
|
} // namespace CGAL
|
|
|
|
#endif // CGAL_BASE_WITH_TIME_STAMP_H
|