annotate statparser.h @ 90:b43355c2473a

* Add filesystem watcher; initial work on enable/disable logic for actions in new scheme
author Chris Cannam
date Tue, 23 Nov 2010 16:35:49 +0000
parents c5e34ed5b791
children
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 <QStringList>
Chris@74 22
Chris@86 23 class StatParser
Chris@74 24 {
Chris@74 25 public:
Chris@86 26 StatParser() { }
Chris@74 27 StatParser(QString text);
Chris@74 28
Chris@74 29 QStringList modified;
Chris@74 30 QStringList added;
Chris@74 31 QStringList unknown;
Chris@74 32 QStringList removed;
Chris@74 33 QStringList missing;
Chris@74 34 };
Chris@74 35
Chris@74 36 #endif // STATPARSER_H