summaryrefslogtreecommitdiff
path: root/src/bibletimeapp.h
blob: b3d5a0ebe3c9501cc411a5fc12ad0d8c976470bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2008 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/

#ifndef BIBLETIMEAPP_H
#define BIBLETIMEAPP_H

#include <QApplication>
#include "util/cpointers.h"


/** The BibleTimeApp class is used to clean up all instances of the backend and to delete all created module objects.
  * @author The BibleTime team
  */
class BibleTimeApp : public QApplication, public CPointers {
    public:
        BibleTimeApp(int &argc, char **argv);
        ~BibleTimeApp();

    protected:
//	void initDCOP();
};

#endif