mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
20 lines
317 B
C
20 lines
317 B
C
|
#ifndef WLDFILE_H
|
||
|
#define WLDFILE_H
|
||
|
|
||
|
#include "transform.h"
|
||
|
|
||
|
class WLDFile
|
||
|
{
|
||
|
public:
|
||
|
WLDFile(const QString &fileName);
|
||
|
|
||
|
const Transform &transform() const {return _transform;}
|
||
|
const QString &errorString() const {return _errorString;}
|
||
|
|
||
|
private:
|
||
|
Transform _transform;
|
||
|
QString _errorString;
|
||
|
};
|
||
|
|
||
|
#endif // WLDFILE_H
|