aboutsummaryrefslogtreecommitdiff
path: root/lib/quotient_common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/quotient_common.cpp')
-rw-r--r--lib/quotient_common.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/lib/quotient_common.cpp b/lib/quotient_common.cpp
deleted file mode 100644
index 5d7a3027..00000000
--- a/lib/quotient_common.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-#include "quotient_common.h"
-
-#include <QtCore/QDebug>
-
-using namespace Quotient;
-
-template <typename Enum>
-inline QDebug suppressScopeAndDump(QDebug dbg, Enum e)
-{
- // Suppress "Quotient::" prefix
- QDebugStateSaver _dss(dbg);
- dbg.setVerbosity(0 /* QDebug::MinimumVerbosity since Qt 5.13 */);
- return qt_QMetaEnum_debugOperator(dbg, std::underlying_type_t<Enum>(e),
- qt_getEnumMetaObject(e),
- qt_getEnumName(e));
-}
-
-template <typename Enum>
-inline QDebug suppressScopeAndDump(QDebug dbg, const QFlags<Enum>& f)
-{
- // Suppress "Quotient::" prefix
- QDebugStateSaver _dss(dbg);
- dbg.setVerbosity(0 /* QDebug::MinimumVerbosity since Qt 5.13 */);
- return qt_QMetaEnum_flagDebugOperator_helper(dbg, f);
-}
-
-QDebug operator<<(QDebug dbg, Membership m)
-{
- return suppressScopeAndDump(dbg, m);
-}
-
-QDebug operator<<(QDebug dbg, MembershipMask mm)
-{
- return suppressScopeAndDump(dbg, mm) << ")";
-}
-
-QDebug operator<<(QDebug dbg, JoinState js)
-{
- return suppressScopeAndDump(dbg, js);
-}
-
-QDebug operator<<(QDebug dbg, JoinStates jss)
-{
- return suppressScopeAndDump(dbg, jss) << ")";
-}