Port MatrixEventTag to C

This commit is contained in:
2017-11-13 15:31:19 +01:00
parent 149c9fec36
commit 3dcaf44540
7 changed files with 318 additions and 71 deletions

View File

@@ -524,5 +524,14 @@ namespace Matrix {
public Json.Node? get_stripped_node();
}
[CCode (cheader_filename = "matrix-event-tag.h")]
public class Tag : Base {
protected override void from_json(Json.Node json_data)
throws Matrix.Error;
protected override void to_json(Json.Node json_data)
throws Matrix.Error;
}
}
}