summaryrefslogtreecommitdiff
path: root/src/frontend/btaboutmoduledialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/btaboutmoduledialog.h')
-rw-r--r--src/frontend/btaboutmoduledialog.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/frontend/btaboutmoduledialog.h b/src/frontend/btaboutmoduledialog.h
new file mode 100644
index 0000000..b705893
--- /dev/null
+++ b/src/frontend/btaboutmoduledialog.h
@@ -0,0 +1,30 @@
+/*********
+*
+* 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 BTABOUTMODULEDIALOG_H
+#define BTABOUTMODULEDIALOG_H
+
+#include <QDialog>
+
+class CSwordModuleInfo;
+class QWidget;
+
+/**
+ Dialog to show the information about a module.
+
+ @author The BibleTime team <info@bibletime.info>
+*/
+class BTAboutModuleDialog : public QDialog
+{
+ Q_OBJECT
+public:
+ BTAboutModuleDialog(QWidget* parent, CSwordModuleInfo* info);
+};
+
+#endif