diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2023-08-12 10:08:29 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2023-08-12 10:08:29 +0200 |
commit | f87eb3c1043d3f4f8e22ba505cd1a827241e160c (patch) | |
tree | e46351c8ec622c9d13232cf00c8a1048e55184af /test/jfif/PhotoMetadata-stub.vala | |
parent | 7f667adb7b8d3a803a6cd6120dcea4ba4ff89075 (diff) | |
parent | 2333d2b06d52754a55a747fa438844286f98d53a (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'test/jfif/PhotoMetadata-stub.vala')
-rw-r--r-- | test/jfif/PhotoMetadata-stub.vala | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/jfif/PhotoMetadata-stub.vala b/test/jfif/PhotoMetadata-stub.vala new file mode 100644 index 0000000..2d5b364 --- /dev/null +++ b/test/jfif/PhotoMetadata-stub.vala @@ -0,0 +1,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; } +} |