File indexing completed on 2024-04-21 04:48:28

0001 /*
0002     SPDX-FileCopyrightText: 2005 Max Howell <max.howell@methylblue.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #ifndef CODEINE_H
0008 #define CODEINE_H
0009 
0010 #include <config.h>
0011 
0012 // try to keep this file light. It gets included by
0013 // practically every implementation and many headers
0014 
0015 namespace Engine
0016 {
0017 }
0018 
0019 class QWidget;
0020 
0021 namespace Dragon
0022 {
0023 QWidget *mainWindow(); // defined in mainWindow.cpp
0024 }
0025 
0026 /// used by mainWindow.h
0027 int main(int, char **);
0028 
0029 #define APP_VERSION PROJECT_VERSION
0030 #define APP_NAME "dragonplayer"
0031 
0032 #endif