1
0
mirror of git://projects.qi-hardware.com/nanomap.git synced 2025-04-21 12:27:27 +03:00

first try to fix building with OpenWRT toolchain that does not include QtCore and QtGui in the include path

This commit is contained in:
Niels
2010-11-17 14:11:42 +01:00
parent bdecafa5bd
commit da88ec21cd
16 changed files with 39 additions and 39 deletions

View File

@@ -24,7 +24,7 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
#include <cassert>
#include <vector>
#include <QHash>
#include <QtCore/QHash>
template< typename NodeID, typename Key >
class ArrayStorage {

View File

@@ -20,10 +20,10 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
#ifndef BLOCKCACHE_H_INCLUDED
#define BLOCKCACHE_H_INCLUDED
#include <QFile>
#include <QHash>
#include <QtCore/QFile>
#include <QtCore/QHash>
#include <limits>
#include <QtDebug>
#include <QtCore/QtDebug>
// Block must have member function / variables:
// variable id => block id

View File

@@ -24,8 +24,8 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
#include "utils/coordinates.h"
#include "utils/bithelpers.h"
#include "blockcache.h"
#include <QString>
#include <QFile>
#include <QtCore/QString>
#include <QtCore/QFile>
#include <algorithm>
#include <vector>

View File

@@ -22,10 +22,10 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
#include "contractionhierarchiesclient.h"
#include "utils/qthelpers.h"
#include <QtDebug>
#include <QtCore/QtDebug>
#include <stack>
#ifndef NOGUI
#include <QMessageBox>
#include <QtGui/QMessageBox>
#endif
ContractionHierarchiesClient::ContractionHierarchiesClient()

View File

@@ -20,8 +20,8 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
#ifndef CONTRACTIONHIERARCHIESCLIENT_H
#define CONTRACTIONHIERARCHIESCLIENT_H
#include <QObject>
#include <QStringList>
#include <QtCore/QObject>
#include <QtCore/QStringList>
#include "interfaces/irouter.h"
#include "binaryheap.h"
#include "compressedgraph.h"