File indexing completed on 2025-01-19 05:11:32
0001 /* 0002 SPDX-FileCopyrightText: 2021 Hamed Masafi <hamed.masfi@gmail.com> 0003 0004 SPDX-License-Identifier: GPL-3.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <QDebug> 0010 #include <QPair> 0011 0012 namespace Diff 0013 { 0014 using Pair2 = QPair<int, int>; 0015 struct Pair3 { 0016 int first = -1; 0017 int second = -1; 0018 int third = -1; 0019 0020 Pair3(); 0021 Pair3(int firstNumber, int secondNumber, int thirdNumber); 0022 0023 bool operator==(Diff::Pair3 other) const; 0024 }; 0025 0026 QDebug operator<<(QDebug d, Diff::Pair3 p); 0027 0028 }