annotate src/annotatedialog.h @ 582:f3a61f28896e

Added tag easyhg_v1.2 for changeset ca943d514769
author Chris Cannam
date Wed, 07 Mar 2012 15:25:33 +0000
parents 533519ebc0cb
children ae67ea0af696
rev   line source
Chris@331 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@331 2
Chris@331 3 /*
Chris@331 4 EasyMercurial
Chris@331 5
Chris@331 6 Based on hgExplorer by Jari Korhonen
Chris@331 7 Copyright (c) 2010 Jari Korhonen
Chris@560 8 Copyright (c) 2012 Chris Cannam
Chris@560 9 Copyright (c) 2012 Queen Mary, University of London
Chris@331 10
Chris@331 11 This program is free software; you can redistribute it and/or
Chris@331 12 modify it under the terms of the GNU General Public License as
Chris@331 13 published by the Free Software Foundation; either version 2 of the
Chris@331 14 License, or (at your option) any later version. See the file
Chris@331 15 COPYING included with this distribution for more information.
Chris@331 16 */
Chris@331 17
Chris@331 18 #ifndef ANNOTATE_DIALOG_H
Chris@331 19 #define ANNOTATE_DIALOG_H
Chris@331 20
Chris@331 21 #include <QDialog>
Chris@331 22
Chris@331 23 class AnnotateDialog : public QDialog
Chris@331 24 {
Chris@331 25 Q_OBJECT
Chris@331 26
Chris@331 27 public:
Chris@331 28 AnnotateDialog(QWidget *parent, QString output);
Chris@331 29 };
Chris@331 30
Chris@331 31 #endif