whitespace cleanup
[vng.git] / hunks / Hunk.h
blob2f32cdefd6612223e7323465cd0c43db99949293
1 /*
2 * This file is part of the vng project
3 * Copyright (C) 2008 Thomas Zander <tzander@trolltech.com>
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef HUNK_H
20 #define HUNK_H
22 #include "../Vng.h"
24 #include <QByteArray>
26 class Hunk
28 public:
29 Hunk();
30 Hunk(const Hunk &other);
31 ~Hunk();
33 void addLine(const QByteArray &line);
34 bool isEmpty() const;
36 int lineNumber() const;
37 int lineNumber(int subHunk) const;
38 int subHunkCount() const;
39 int linesAdded() const;
40 int linesRemoved() const;
42 Vng::Acceptance acceptance() const;
43 Vng::Acceptance acceptance(int subHunk) const;
44 void setAcceptance(Vng::Acceptance accepted);
45 void setAcceptance(int subHunk, Vng::Acceptance accepted);
46 QByteArray header() const;
48 QByteArray subHunk(int index) const;
49 QByteArray patch() const;
50 QByteArray acceptedPatch() const;
51 QByteArray rejectedPatch() const;
53 Hunk &operator=(const Hunk &other);
54 private:
55 class Private;
56 Private * d;
59 #endif