// Copyright (C) 2019-2020 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. #include #include namespace isc { namespace data { BaseStampedElement::BaseStampedElement() /// @todo Change it to microsec_clock once we transition to subsecond /// precision. : id_(0), timestamp_(boost::posix_time::second_clock::local_time()) { } void BaseStampedElement::updateModificationTime() { /// @todo Change it to microsec_clock once we transition to subsecond /// precision. setModificationTime(boost::posix_time::second_clock::local_time()); } } // end of namespace isc::data } // end of namespace isc