21#include <arccore/base/FatalErrorException.h>
22#include <arccore/base/TraceInfo.h>
24#include <alien/utils/time_stamp/TimestampMng.h>
32using namespace Arccore;
53 m_manager->updateTimestamp(
this);
60 m_timestamp = v.m_timestamp;
65void Timestamp::setTimestamp(
const TimestampMng* manager,
const Int64 timestamp)
67 if (manager != m_manager)
68 throw FatalErrorException(
69 A_FUNCINFO,
"Illegal TimestampMng used for updating timestamp");
70 m_timestamp = timestamp;
Gestionnaire de Timestamp.
virtual Int64 timestamp() const
Donne la valeur courante du timestamp.
void updateTimestamp()
Met à jour le timestamp.
void copyTimestamp(const Timestamp &v)
Copy un autre timestamp.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --