mirror of
git://projects.qi-hardware.com/nanomap.git
synced 2025-03-12 10:09:11 +02:00
Revert "first try to fix building with OpenWRT toolchain that does not include QtCore and QtGui in the include path"
This reverts commit da88ec21cdbda458d04368292008126c3ebe5715. This was not the right solution
This commit is contained in:
parent
88239a2deb
commit
f1a2430393
@ -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 {
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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()
|
||||
|
@ -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"
|
||||
|
@ -18,14 +18,14 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "gpsgridclient.h"
|
||||
#include <QtCore/QtDebug>
|
||||
#include <QtCore/QHash>
|
||||
#include <QtDebug>
|
||||
#include <QHash>
|
||||
#include <algorithm>
|
||||
#include "utils/qthelpers.h"
|
||||
#ifndef NOGUI
|
||||
#include <QtGui/QInputDialog>
|
||||
#include <QInputDialog>
|
||||
#endif
|
||||
#include <QtCore/QSettings>
|
||||
#include <QSettings>
|
||||
|
||||
GPSGridClient::GPSGridClient()
|
||||
{
|
||||
|
@ -20,12 +20,12 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
#ifndef GPSGRIDCLIENT_H
|
||||
#define GPSGRIDCLIENT_H
|
||||
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QFile>
|
||||
#include <QObject>
|
||||
#include <QFile>
|
||||
#include "interfaces/igpslookup.h"
|
||||
#include "cell.h"
|
||||
#include "table.h"
|
||||
#include <QtCore/QCache>
|
||||
#include <QCache>
|
||||
|
||||
class GPSGridClient : public QObject, public IGPSLookup
|
||||
{
|
||||
|
@ -20,12 +20,12 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
#ifndef TABLE_H
|
||||
#define TABLE_H
|
||||
|
||||
#include <QtCore/QtGlobal>
|
||||
#include <QtCore/QCache>
|
||||
#include <QtCore/QFile>
|
||||
#include <QtGlobal>
|
||||
#include <QCache>
|
||||
#include <QFile>
|
||||
#include <string.h>
|
||||
#include <vector>
|
||||
#include <QtCore/QtDebug>
|
||||
#include <QtDebug>
|
||||
|
||||
namespace gg {
|
||||
|
||||
|
@ -21,8 +21,8 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
#define IADDRESSLOOKUP_H
|
||||
|
||||
#include "utils/coordinates.h"
|
||||
#include <QtCore/QtPlugin>
|
||||
#include <QtCore/QVector>
|
||||
#include <QtPlugin>
|
||||
#include <QVector>
|
||||
|
||||
class IAddressLookup
|
||||
{
|
||||
|
@ -22,8 +22,8 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#include "utils/config.h"
|
||||
#include "utils/coordinates.h"
|
||||
#include <QtCore/QtPlugin>
|
||||
#include <QtCore/QVector>
|
||||
#include <QtPlugin>
|
||||
#include <QVector>
|
||||
|
||||
class IGPSLookup
|
||||
{
|
||||
|
@ -23,8 +23,8 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
#include "utils/config.h"
|
||||
#include "utils/coordinates.h"
|
||||
#include "interfaces/igpslookup.h"
|
||||
#include <QtCore/QtPlugin>
|
||||
#include <QtCore/QVector>
|
||||
#include <QtPlugin>
|
||||
#include <QVector>
|
||||
|
||||
class IRouter
|
||||
{
|
||||
|
@ -20,7 +20,7 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
#ifndef TRIE_H
|
||||
#define TRIE_H
|
||||
|
||||
#include <QtCore/QString>
|
||||
#include <QString>
|
||||
#include <vector>
|
||||
#include "utils/coordinates.h"
|
||||
#include "utils/bithelpers.h"
|
||||
|
@ -23,10 +23,10 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#include "unicodetournamenttrieclient.h"
|
||||
#include "utils/qthelpers.h"
|
||||
#include <QtCore/QtDebug>
|
||||
#include <QtDebug>
|
||||
#include <algorithm>
|
||||
#ifndef NOGUI
|
||||
#include <QtGui/QMessageBox>
|
||||
#include <QMessageBox>
|
||||
#endif
|
||||
|
||||
UnicodeTournamentTrieClient::UnicodeTournamentTrieClient()
|
||||
|
@ -20,9 +20,9 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
#ifndef UNICODETOURNAMENTTRIECLIENT_H
|
||||
#define UNICODETOURNAMENTTRIECLIENT_H
|
||||
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QtPlugin>
|
||||
#include <QtCore/QFile>
|
||||
#include <QObject>
|
||||
#include <QtPlugin>
|
||||
#include <QFile>
|
||||
#include "interfaces/iaddresslookup.h"
|
||||
#include "trie.h"
|
||||
|
||||
|
@ -22,7 +22,7 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#include "utils/coordinates.h"
|
||||
#include <vector>
|
||||
#include <QtCore/QMultiHash>
|
||||
#include <QMultiHash>
|
||||
#include <algorithm>
|
||||
|
||||
static uint qHash( const UnsignedCoordinate& key )
|
||||
|
@ -20,11 +20,11 @@ along with MoNav. If not, see <http://www.gnu.org/licenses/>.
|
||||
#ifndef QTHELPERS_H
|
||||
#define QTHELPERS_H
|
||||
|
||||
#include <QtCore/QFile>
|
||||
#include <QtCore/QtDebug>
|
||||
#include <QtCore/QDataStream>
|
||||
#include <QtCore/QTime>
|
||||
#include <QtCore/QDir>
|
||||
#include <QFile>
|
||||
#include <QtDebug>
|
||||
#include <QDataStream>
|
||||
#include <QTime>
|
||||
#include <QDir>
|
||||
|
||||
static inline QString fileInDirectory( QString directory, QString filename )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user