~ubuntu-branches/ubuntu/jaunty/bibletime/jaunty

« back to all changes in this revision

Viewing changes to bibletime/bibletimeapp.h

  • Committer: Bazaar Package Importer
  • Author(s): Ralph Janke
  • Date: 2008-05-10 15:18:16 UTC
  • mfrom: (1.1.6 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080510151816-bqp8y1to705zd0fm
Tags: 1.6.5.1-1
* New upstream version (Closes: #441161, #271502)
* fixes for new autotools and gcc 4.3 (Closes: #407291)
* added poxml to Build-Depends
* No DFSG necessary anymore since biblestudy howto has 
  now Commons Licence 
* Added libclucene-dev to dev-depends (Closes: #436677)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********
 
2
*
 
3
* This file is part of BibleTime's source code, http://www.bibletime.info/.
 
4
*
 
5
* Copyright 1999-2006 by the BibleTime developers.
 
6
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
 
7
*
 
8
**********/
 
9
 
 
10
 
 
11
 
 
12
#ifndef BIBLETIMEAPP_H
 
13
#define BIBLETIMEAPP_H
 
14
 
 
15
//BibleTime
 
16
#include "util/cpointers.h"
 
17
 
 
18
//KDE
 
19
#include <kapplication.h>
 
20
 
 
21
/** The BibleTimeApp class is used to clean up all instances of the backend and to delete all created module objects.
 
22
  * @author The BibleTime team
 
23
  */
 
24
class BibleTimeApp : public KApplication, public CPointers {
 
25
public:
 
26
        BibleTimeApp();
 
27
        virtual ~BibleTimeApp();
 
28
 
 
29
protected:
 
30
        void initDCOP();
 
31
};
 
32
 
 
33
#endif