QTfrontend/net/hwmapoptimizer.h
author antonc27 <antonc27@mail.ru>
Sat, 08 Aug 2015 21:04:47 +0200
branchios-revival
changeset 11082 438d0f49a8d6
parent 10256 b07288b729c4
permissions -rw-r--r--
- fpc updated to 3.1.1 - Build scripts updated Note1: fpc must be compiled from sources before! Full instructions here: http://blog.naver.com/simonsayz/220305479793 Note2: Build script for a moment worked only for iPhone simulator 8.x and for new arch (like iPhone 6 or iPad Air)

#ifndef HWMAPOPTIMIZER_H
#define HWMAPOPTIMIZER_H

#include "tcpBase.h"
#include "drawmapscene.h"

class HWMapOptimizer : public TCPBase
{
    Q_OBJECT
public:
    explicit HWMapOptimizer(QObject *parent = 0);

    void optimizeMap(const Paths & paths);
    bool couldBeRemoved();
    
signals:    
    void optimizedMap(const Paths & paths);
    
public slots:

protected:
    QStringList getArguments();
    void onClientDisconnect();
    void SendToClientFirst();

private:
    Paths m_paths;
};

#endif // HWMAPOPTIMIZER_H