Port MatrixMessageText to C

This commit is contained in:
2017-11-18 11:49:04 +01:00
parent 81521688e8
commit 49a2bf4aa9
6 changed files with 109 additions and 21 deletions

View File

@@ -641,5 +641,14 @@ namespace Matrix {
public virtual void to_json(Json.Node json_data)
throws Matrix.Error;
}
[CCode (cheader_filename = "matrix-message-text.h")]
public class Text : 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;
}
}
}