using Gee;
using Valadoc.Content;
+
+/**
+ * Represents a pointer declaration.
+ */
public class Valadoc.Api.Pointer : Item {
private Vala.PointerType vtype;
+ /**
+ * The type the pointer is referring to.
+ */
public Item data_type {
private set;
get;
}
}
+ /**
+ * {@inheritDoc}
+ */
internal override void resolve_type_references (Tree root) {
Api.Item type = this.data_type;
if (type == null) {
}
}
+ /**
+ * {@inheritDoc}
+ */
protected override Inline build_signature () {
return new SignatureBuilder ()
.append_content (data_type.signature)