comparison statparser.h @ 74:10eb97683aa9

* Show branch names even for changes with children, if those children are on a different branch * Pick up remote repo path from local repo via hg paths * Some work towards breaking down files into various groups based on status * Add /usr/local/bin to path for hg (temporary hack I hope)
author Chris Cannam
date Fri, 19 Nov 2010 14:54:19 +0000
parents
children 89f793fbedda
comparison
equal deleted inserted replaced
73:a773c6e7b301 74:10eb97683aa9
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2
3 /*
4 EasyMercurial
5
6 Based on HgExplorer by Jari Korhonen
7 Copyright (c) 2010 Jari Korhonen
8 Copyright (c) 2010 Chris Cannam
9 Copyright (c) 2010 Queen Mary, University of London
10
11 This program is free software; you can redistribute it and/or
12 modify it under the terms of the GNU General Public License as
13 published by the Free Software Foundation; either version 2 of the
14 License, or (at your option) any later version. See the file
15 COPYING included with this distribution for more information.
16 */
17
18 #ifndef STATPARSER_H
19 #define STATPARSER_H
20
21 #include <QObject>
22 #include <QStringList>
23
24 class StatParser : public QObject
25 {
26 Q_OBJECT
27 public:
28 StatParser(QString text);
29
30 QStringList modified;
31 QStringList added;
32 QStringList unknown;
33 QStringList removed;
34 QStringList missing;
35
36 };
37
38 #endif // STATPARSER_H