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

Last change on this file since 1 was 1, checked in by bcornec, 19 years ago

Initial import from latest mondo-2.04_cvs_20050503/mindi-1.04_cvs_20050503 on http://www.mondorescue.org

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,v 1.1 2004/06/10 16:13:06 hugo Exp $
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
32public:
33 XMondoBackup();
34 ~XMondoBackup();
35 int run (struct s_bkpinfo *bkpinfo);
36 int compare (struct s_bkpinfo *bkpinfo);
37
38public slots:
39 void abortBackup();
40
41private:
42 BackupThread *th;
43};
44
45#endif
Note: See TracBrowser for help on using the repository browser.