summaryrefslogtreecommitdiff
path: root/endianhelpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'endianhelpers.h')
-rw-r--r--endianhelpers.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/endianhelpers.h b/endianhelpers.h
deleted file mode 100644
index 3060382..0000000
--- a/endianhelpers.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef ENDIANHELPERS_H
-#define ENDIANHELPERS_H
-
-#include <QtCore/QtEndian>
-
-namespace
-{
-
-template<typename T>
-inline T read(const QByteArray &data, int &offset)
-{
- T unswapped;
- memcpy(&unswapped, &data.constData()[offset], sizeof(T)); // Unaligned access warning!
- offset += sizeof(T);
- return qFromBigEndian<T>(unswapped);
-}
-
-template<typename T>
-inline void append(QByteArray &data, const T &value)
-{
- T swapped = qToBigEndian<T>(value);
- data.append(reinterpret_cast<const char*>(&swapped), sizeof(T));
-}
-
-}
-
-#endif // ENDIANHELPERS_H