annotate src/annotatedialog.h @ 672:88fa1544b407

Merge from branch qt5. There's much more to be done before we can make another release, but clearly it's going to be done using qt5
author Chris Cannam
date Wed, 05 Dec 2018 09:44:10 +0000
parents ae67ea0af696
children
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@644 8 Copyright (c) 2013 Chris Cannam
Chris@644 9 Copyright (c) 2013 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