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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
/****************************************************************************
**
** Copyright (C) 2006-2009 fullmetalcoder <fullmetalcoder@hotmail.fr>
**
** This file is part of the Edyuk project <http://edyuk.org>
**
** This file may be used under the terms of the GNU General Public License
** version 3 as published by the Free Software Foundation and appearing in the
** file GPL.txt included in the packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#ifndef _QCE_CONFIG_H_
#define _QCE_CONFIG_H_
/*!
\file qce-config.h
\brief Utility file for shared library creation
*/
#include "modifiedQObject.h"
#include <qglobal.h>
/*!
\macro QCE_EXPORT
\brief Macro needed for cross-platform shared libraries creation
*/
#ifdef QCE_EXPORT
#error QCE_EXPORT already defined...
#endif
/*#ifdef _QCODE_EDIT_BUILD_
#define QCE_EXPORT Q_DECL_EXPORT
#else
#define QCE_EXPORT Q_DECL_IMPORT
#endif*/
#define QCE_EXPORT
class QString;
class QStringList;
namespace QCE
{
QString fetchDataFile(const QString& file);
QStringList dataPathes();
void addDataPath(const QString& path);
template <typename Registerable>
class Registar
{
public:
Registar()
{
Registerable::_register();
}
};
}
#define QCE_AUTO_REGISTER(T) \
static QCE::Registar<T> _auto_##T##_registar; \
#endif // !_QCE_CONFIG_H_
|