Skip to content
Snippets Groups Projects
ExifParser.h 325 B
Newer Older
  • Learn to ignore specific revisions
  • Andreas Bircher's avatar
    Andreas Bircher committed
    #ifndef EXIFPARSER_H
    #define EXIFPARSER_H
    
    #include <QGeoCoordinate>
    #include <QDebug>
    
    
    #include "GeoTagController.h"
    
    
    Andreas Bircher's avatar
    Andreas Bircher committed
    class ExifParser
    {
    public:
        ExifParser();
        ~ExifParser();
        double readTime(QByteArray& buf);
    
        bool write(QByteArray& buf, GeoTagWorker::cameraFeedbackPacket& geotag);
    
    Andreas Bircher's avatar
    Andreas Bircher committed
    };
    
    #endif // EXIFPARSER_H