You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
681 B
34 lines
681 B
/*********
|
|
*
|
|
* This file is part of BibleTime's source code, http://www.bibletime.info/.
|
|
*
|
|
* Copyright 1999-2006 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
|
|
|
|
//BibleTime
|
|
#include "util/cpointers.h"
|
|
|
|
//KDE
|
|
#include <tdeapplication.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 TDEApplication, public CPointers {
|
|
public:
|
|
BibleTimeApp();
|
|
virtual ~BibleTimeApp();
|
|
|
|
protected:
|
|
void initDCOP();
|
|
};
|
|
|
|
#endif
|