source: MondoRescue/trunk/mondo/mondo/xmondo/xmondobackup.h@ 127

Last change on this file since 127 was 127, checked in by bcornec, 18 years ago

merge -r 125:126 $SVN_M/branches/2.05

  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1/***************************************************************************
2 xmondobackup.h - description
3 -------------------
4 begin : Mon Apr 28 2003
5 copyright : (C) 2003 by Joshua Oreman
6 email : oremanj@get-linux.org
7 cvsid : $Id: xmondobackup.h 127 2005-11-19 01:27:31Z bcornec $
8 ***************************************************************************/
9
10/***************************************************************************
11 * *
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
16 * *
17 ***************************************************************************/
18
19#ifndef XMONDOBACKUP_H
20#define XMONDOBACKUP_H
21
22#include <qdialog.h>
23#include "xmondo.h"
24
25/**The class that does the nuts and bolts of the backup routine.
26 *@author Joshua Oreman
27 */
28
29class BackupThread;
30class XMondoBackup:public QObject {
31 Q_OBJECT public:
32 XMondoBackup();
33 ~XMondoBackup();
34 int run(struct s_bkpinfo *bkpinfo);
35 int compare(struct s_bkpinfo *bkpinfo);
36
37 public slots:void abortBackup();
38
39 private:
40 BackupThread * th;
41};
42
43#endif
Note: See TracBrowser for help on using the repository browser.