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

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

This reverts commit da88ec21cd.

This was not the right solution
This commit is contained in:
Niels
2010-11-17 22:05:12 +01:00
parent 88239a2deb
commit f1a2430393
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 <QtCore/QHash>
#include <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 <QtCore/QFile>
#include <QtCore/QHash>
#include <QFile>
#include <QHash>
#include <limits>
#include <QtCore/QtDebug>
#include <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 <QtCore/QString>
#include <QtCore/QFile>
#include <QString>
#include <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 <QtCore/QtDebug>
#include <QtDebug>
#include <stack>
#ifndef NOGUI
#include <QtGui/QMessageBox>
#include <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 <QtCore/QObject>
#include <QtCore/QStringList>
#include <QObject>
#include <QStringList>
#include "interfaces/irouter.h"
#include "binaryheap.h"
#include "compressedgraph.h"