aboutsummaryrefslogtreecommitdiff
path: root/xmpp-vala/src/module/xep/pixbuf_storage.vala
blob: cdc227ea7b06512ba30025ae6ba29ff94b67ee83 (plain) (blame)
1
2
3
4
5
6
7
8
9
using Gdk;

namespace Xmpp.Xep {
public interface PixbufStorage : Object {
    public abstract void store(string id, Bytes data);
    public abstract bool has_image(string id);
    public abstract Pixbuf? get_image(string id);
}
}