ExifParser.h 278 Bytes
Newer Older
Andreas Bircher's avatar
Andreas Bircher committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef EXIFPARSER_H
#define EXIFPARSER_H

#include <QGeoCoordinate>
#include <QDebug>

class ExifParser
{
public:
    ExifParser();
    ~ExifParser();
    double readTime(QByteArray& buf);
    bool write(QByteArray& data, QGeoCoordinate coordinate);
};

#endif // EXIFPARSER_H