Port MatrixMessageText to C

This commit is contained in:
2017-11-18 11:49:04 +01:00
parent 93154a3e5e
commit 3e7979b905
6 changed files with 102 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;
}
}
}