aboutsummaryrefslogblamecommitdiff
path: root/xmpp-vala/src/module/xep/pixbuf_storage.vala
blob: 550290cfe35071ca7ad55d0e51e9962aa812bb1a (plain) (tree)
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 async Pixbuf? get_image(string id);
}
}