mirror of
https://github.com/romixlab/qmsgpack.git
synced 2025-07-30 02:17:15 +02:00
20 lines
600 B
C
20 lines
600 B
C
#ifndef GEOMETRY_H
|
|
#define GEOMETRY_H
|
|
|
|
#include "../msgpack_export.h"
|
|
#include "../msgpackstream.h"
|
|
|
|
#include <QRect>
|
|
|
|
MSGPACK_EXPORT MsgPackStream &operator<<(MsgPackStream& s, const QPoint &point);
|
|
MSGPACK_EXPORT MsgPackStream& operator>>(MsgPackStream& s, QPoint &point);
|
|
|
|
MSGPACK_EXPORT MsgPackStream &operator<<(MsgPackStream& s, const QSize &sz);
|
|
MSGPACK_EXPORT MsgPackStream& operator>>(MsgPackStream& s, QSize &sz);
|
|
|
|
MSGPACK_EXPORT MsgPackStream &operator<<(MsgPackStream& s, const QRect &rect);
|
|
MSGPACK_EXPORT MsgPackStream& operator>>(MsgPackStream& s, QRect &rect);
|
|
|
|
#endif // GEOMETRY_H
|
|
|