update readme

This commit is contained in:
yggverse 2024-09-26 00:52:53 +03:00
parent 3d49049ad5
commit c03bef9f15

View File

@ -39,8 +39,9 @@ This guide in process
* implement only one `struct` (same as one file for one class) * implement only one `struct` (same as one file for one class)
* `struct` is public, where members - private * `struct` is public, where members - private
* contain `struct` implementation: * contain `struct` implementation:
* one constructor that must: * one constructor that must return:
* return raw `struct` without cover to any kind of smart `std` or `glib` pointers * raw `struct` without cover to any kind of smart `std` or `glib` pointers
* ownership to new object created
* one link getter for widget implementation (`widget -> &Gtk`) because it's private * one link getter for widget implementation (`widget -> &Gtk`) because it's private
### Contribution ### Contribution