LeechCraft 0.6.70-17335-ge406ffdcaf
Modular cross-platform feature rich live environment.
Loading...
Searching...
No Matches
structuresops.h
Go to the documentation of this file.
1/**********************************************************************
2 * LeechCraft - modular cross-platform feature rich internet client.
3 * Copyright (C) 2006-2014 Georg Rudoy
4 *
5 * Distributed under the Boost Software License, Version 1.0.
6 * (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE_1_0.txt)
7 **********************************************************************/
8
9#ifndef UTIL_STRUCTURESOPS_H
10#define UTIL_STRUCTURESOPS_H
11#include <QDataStream>
13#include "utilconfig.h"
14
15UTIL_API QDataStream& operator<< (QDataStream& out, const LC::Entity& e);
16UTIL_API QDataStream& operator>> (QDataStream& in, LC::Entity& e);
17
18namespace LC
19{
20 UTIL_API bool operator< (const LC::Entity&, const LC::Entity&);
21 UTIL_API bool operator== (const LC::Entity&, const LC::Entity&);
22}
23
24#endif
25
Definition constants.h:15
bool operator==(const LC::Entity &e1, const LC::Entity &e2)
bool operator<(const LC::Entity &e1, const LC::Entity &e2)
A message used for inter-plugin communication.
Definition structures.h:96
UTIL_API QDataStream & operator<<(QDataStream &out, const LC::Entity &e)
UTIL_API QDataStream & operator>>(QDataStream &in, LC::Entity &e)
#define UTIL_API
Definition utilconfig.h:16