pollymc/logic/minecraft/ParseUtils.h

15 lines
366 B
C
Raw Normal View History

2014-05-10 05:23:32 +05:30
#pragma once
#include <QString>
#include <QDateTime>
/**
* parse the S3 timestamp in 'raw' and fill the forwarded variables.
* return true/false for success/failure
*/
bool parse_timestamp (const QString &raw, QString &save_here, QDateTime &parse_here);
2014-05-10 05:23:32 +05:30
/**
* take the timestamp used by S3 and turn it into QDateTime
*/
QDateTime timeFromS3Time(QString str);