geopro/external/gpr3dviewer/PosParser.h

18 lines
457 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef POSPARSER_H
#define POSPARSER_H
#include <QString>
#include <QVector>
#include <QVector3D>
class PosParser {
public:
// 加载 .pos 文件4列道号 X Y Z
static bool loadPosFile(const QString &posFilePath, QVector<QVector3D> &outPositions);
// 加载 center.ccc 项目中心坐标2列纬度 经度)
static bool loadCenterCcc(const QString &cccFilePath, double &outLat, double &outLon);
};
#endif // POSPARSER_H