2017-03-02 14:37:32 +00:00
|
|
|
using Gdk;
|
|
|
|
|
|
|
|
namespace Xmpp.Xep {
|
|
|
|
public interface PixbufStorage : Object {
|
2019-04-18 20:37:21 +00:00
|
|
|
public abstract void store(string id, Bytes data);
|
2017-03-02 14:37:32 +00:00
|
|
|
public abstract bool has_image(string id);
|
2019-04-19 19:42:40 +00:00
|
|
|
public abstract async Pixbuf? get_image(string id);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
2019-04-18 20:37:21 +00:00
|
|
|
}
|