annotate 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
rev   line source
Chris@74 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@74 2
Chris@74 3 /*
Chris@74 4 EasyMercurial
Chris@74 5
Chris@74 6 Based on HgExplorer by Jari Korhonen
Chris@74 7 Copyright (c) 2010 Jari Korhonen
Chris@74 8 Copyright (c) 2010 Chris Cannam
Chris@74 9 Copyright (c) 2010 Queen Mary, University of London
Chris@74 10
Chris@74 11 This program is free software; you can redistribute it and/or
Chris@74 12 modify it under the terms of the GNU General Public License as
Chris@74 13 published by the Free Software Foundation; either version 2 of the
Chris@74 14 License, or (at your option) any later version. See the file
Chris@74 15 COPYING included with this distribution for more information.
Chris@74 16 */
Chris@74 17
Chris@74 18 #ifndef STATPARSER_H
Chris@74 19 #define STATPARSER_H
Chris@74 20
Chris@74 21 #include <QObject>
Chris@74 22 #include <QStringList>
Chris@74 23
Chris@74 24 class StatParser : public QObject
Chris@74 25 {
Chris@74 26 Q_OBJECT
Chris@74 27 public:
Chris@74 28 StatParser(QString text);
Chris@74 29
Chris@74 30 QStringList modified;
Chris@74 31 QStringList added;
Chris@74 32 QStringList unknown;
Chris@74 33 QStringList removed;
Chris@74 34 QStringList missing;
Chris@74 35
Chris@74 36 };
Chris@74 37
Chris@74 38 #endif // STATPARSER_H