Don't keep compiling/run if something failed.
[kdevelopdvcssupport.git] / plugins / subversion / svnupdatewidget.h
blob361c942306a4a78ab7f818c92e00a33bfdf350a9
1 /***************************************************************************
2 * Copyright 2007 Dukju Ahn <dukjuahn@gmail.com> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 ***************************************************************************/
11 #ifndef SVNUPDATEWIDGET_H
12 #define SVNUPDATEWIDGET_H
14 #include <kdialog.h>
15 class SvnRevision;
17 class SvnUpdateOptionDlg : public KDialog
19 Q_OBJECT
20 public:
21 SvnUpdateOptionDlg( QWidget *parent = NULL );
22 ~SvnUpdateOptionDlg();
24 SvnRevision revision();
25 bool recurse();
26 bool ignoreExternal();
27 private:
28 class Private;
29 Private *d;
32 #endif