mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-08 23:12:16 +02:00
Code convention fixes
This commit is contained in:
parent
9a484ff00d
commit
82b26b75f4
1 changed files with 4 additions and 4 deletions
|
@ -22,9 +22,9 @@
|
||||||
// copy of QNetworkCacheMetaData
|
// copy of QNetworkCacheMetaData
|
||||||
class MyMetaData {
|
class MyMetaData {
|
||||||
public:
|
public:
|
||||||
typedef QPair<QByteArray, QByteArray> RawHeader;
|
using RawHeader = QPair<QByteArray, QByteArray>;
|
||||||
typedef QList<RawHeader> RawHeaderList;
|
using RawHeaderList = QList<RawHeader>;
|
||||||
typedef QHash<qint32, QVariant> AttributesMap;
|
using AttributesMap = QHash<qint32, QVariant>;
|
||||||
|
|
||||||
QUrl url;
|
QUrl url;
|
||||||
QDateTime expirationDate;
|
QDateTime expirationDate;
|
||||||
|
@ -34,7 +34,7 @@ public:
|
||||||
RawHeaderList rawHeaders;
|
RawHeaderList rawHeaders;
|
||||||
};
|
};
|
||||||
|
|
||||||
QDataStream &operator>>(QDataStream &, MyMetaData &);
|
QDataStream &operator>>(QDataStream& in, MyMetaData& metaData);
|
||||||
|
|
||||||
class CacheExtractApp : public QCoreApplication {
|
class CacheExtractApp : public QCoreApplication {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
Loading…
Reference in a new issue