minecraft-launcher/app/minecraft/ParseUtils.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
245 B
C
Raw Permalink Normal View History

#pragma once
#include <QDateTime>
#include <QString>
/// take the timestamp used by S3 and turn it into QDateTime
QDateTime timeFromS3Time(QString str);
/// take a timestamp and convert it into an S3 timestamp
QString timeToS3Time(QDateTime);