Port MatrixMessageNotice to C

This commit is contained in:
2017-11-20 16:46:55 +01:00
parent 57bbfa43a1
commit 10e4c0d7f0
7 changed files with 114 additions and 47 deletions

View File

@@ -837,5 +837,16 @@ namespace Matrix {
to_json(Json.Node json_data)
throws Matrix.Error;
}
[CCode (cheader_filename = "matrix-message-notice.h")]
public class Notice : 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;
}
}
}