summaryrefslogtreecommitdiff
path: root/test/jfif/PhotoMetadata-stub.vala
blob: 2d5b364426accc3b3e51035009b069e781a2066a (plain)
1
2
3
4
5
6
7
8
// stub class for photo metadata needed by the JFIF Support test
public class PhotoMetadata {
    public PhotoMetadata() { }
    public void read_from_file(File file) throws Error { }
    public void write_to_file(File file) throws Error { }
    public string? exif_hash() { return null; }
    public string? thumbnail_hash() { return null; }
}