Port MatrixMessageEmote to C

This commit is contained in:
2017-11-18 14:30:02 +01:00
parent 3b61d2997e
commit a6899e054f
6 changed files with 100 additions and 25 deletions

View File

@@ -665,5 +665,14 @@ namespace Matrix {
to_json(Json.Node json_data)
throws Matrix.Error;
}
[CCode (cheader_filename = "matrix-message-emote.h")]
public class Emote : Base {
public override void from_json(Json.Node json_data)
throws Matrix.Error;
public override void to_json(Json.Node json_data)
throws Matrix.Error;
}
}
}