ExifParser.h 325 Bytes
Newer Older
Andreas Bircher's avatar
Andreas Bircher committed
1 2 3 4 5 6
#ifndef EXIFPARSER_H
#define EXIFPARSER_H

#include <QGeoCoordinate>
#include <QDebug>

7 8
#include "GeoTagController.h"

Andreas Bircher's avatar
Andreas Bircher committed
9 10 11 12 13 14
class ExifParser
{
public:
    ExifParser();
    ~ExifParser();
    double readTime(QByteArray& buf);
15
    bool write(QByteArray& buf, GeoTagWorker::cameraFeedbackPacket& geotag);
Andreas Bircher's avatar
Andreas Bircher committed
16 17 18
};

#endif // EXIFPARSER_H