What is the equivalent of g_param_spec_boxed() in V开发者_开发技巧ala?
These functions are not bound. It wouldn't be a big deal to bind them, so you can request them by reporting a bug. Anyway, unless you're doing something at run-time, you should use Vala properties such as:
public class Foo {
public YourStruct your_struct { get; set; }
}
Which will create a property named your_struct for the boxed type YourStruct.
精彩评论