remove obsolete ref modifier and callback keyword
[vala-lang.git] / gobject / valacodegeneratorstruct.vala
blob65e5657530260c27038be26016c6176d4bb22782
1 /* valacodegeneratorstruct.vala
3 * Copyright (C) 2006-2007 Jürg Billeter, Raffaele Sandrini
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 * Author:
20 * Jürg Billeter <j@bitron.ch>
21 * Raffaele Sandrini <rasa@gmx.ch>
24 using GLib;
26 public class Vala.CodeGenerator {
27 public override void visit_struct (Struct! st) {
28 current_type_symbol = st.symbol;
30 instance_struct = new CCodeStruct ("_%s".printf (st.get_cname ()));
32 if (st.source_reference.file.cycle == null) {
33 header_type_declaration.append (new CCodeTypeDefinition ("struct _%s".printf (st.get_cname ()), new CCodeVariableDeclarator (st.get_cname ())));
36 if (st.source_reference.comment != null) {
37 header_type_definition.append (new CCodeComment (st.source_reference.comment));
39 header_type_definition.append (instance_struct);
41 st.accept_children (this);
43 current_type_symbol = null;