mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
108 lines
2.3 KiB
C++
108 lines
2.3 KiB
C++
/*
|
|
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
* version 3 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "TimeInfo.h"
|
|
|
|
#include "core/Tools.h"
|
|
|
|
TimeInfo::TimeInfo()
|
|
: m_expires(false)
|
|
, m_usageCount(0)
|
|
{
|
|
QDateTime now = Tools::currentDateTimeUtc();
|
|
m_lastModificationTime = now;
|
|
m_creationTime = now;
|
|
m_lastAccessTime = now;
|
|
m_expiryTime = now;
|
|
m_locationChanged = now;
|
|
}
|
|
|
|
QDateTime TimeInfo::lastModificationTime() const
|
|
{
|
|
return m_lastModificationTime;
|
|
}
|
|
|
|
QDateTime TimeInfo::creationTime() const
|
|
{
|
|
return m_creationTime;
|
|
}
|
|
|
|
QDateTime TimeInfo::lastAccessTime() const
|
|
{
|
|
return m_lastAccessTime;
|
|
}
|
|
|
|
QDateTime TimeInfo::expiryTime() const
|
|
{
|
|
return m_expiryTime;
|
|
}
|
|
|
|
bool TimeInfo::expires() const
|
|
{
|
|
return m_expires;
|
|
}
|
|
|
|
int TimeInfo::usageCount() const
|
|
{
|
|
return m_usageCount;
|
|
}
|
|
|
|
QDateTime TimeInfo::locationChanged() const
|
|
{
|
|
return m_locationChanged;
|
|
}
|
|
|
|
void TimeInfo::setLastModificationTime(const QDateTime& dateTime)
|
|
{
|
|
Q_ASSERT(dateTime.timeSpec() == Qt::UTC);
|
|
m_lastModificationTime = dateTime;
|
|
}
|
|
|
|
void TimeInfo::setCreationTime(const QDateTime& dateTime)
|
|
{
|
|
Q_ASSERT(dateTime.timeSpec() == Qt::UTC);
|
|
m_creationTime = dateTime;
|
|
}
|
|
|
|
void TimeInfo::setLastAccessTime(const QDateTime& dateTime)
|
|
{
|
|
Q_ASSERT(dateTime.timeSpec() == Qt::UTC);
|
|
m_lastAccessTime = dateTime;
|
|
}
|
|
|
|
void TimeInfo::setExpiryTime(const QDateTime& dateTime)
|
|
{
|
|
Q_ASSERT(dateTime.timeSpec() == Qt::UTC);
|
|
m_expiryTime = dateTime;
|
|
}
|
|
|
|
void TimeInfo::setExpires(bool expires)
|
|
{
|
|
m_expires = expires;
|
|
}
|
|
|
|
void TimeInfo::setUsageCount(int count)
|
|
{
|
|
m_usageCount = count;
|
|
}
|
|
|
|
void TimeInfo::setLocationChanged(const QDateTime& dateTime)
|
|
{
|
|
Q_ASSERT(dateTime.timeSpec() == Qt::UTC);
|
|
m_locationChanged = dateTime;
|
|
}
|