Port MatrixMessageEmote to C

This commit is contained in:
2017-11-18 14:30:02 +01:00
parent 3da4c4d70a
commit 8e206e8d3d
6 changed files with 93 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;
}
}
}