glib-2.0: Add missing return of Queue.remove*() and add HashTable.foreach_steal()
[vala-gnome.git] / ccode / valaccodeifsection.vala
blobdd51743e04af562c8a9df3e4e1505186e834259a
1 /* valaccodeifsection.vala
3 * Copyright (C) 2013 Jürg Billeter
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.1 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 * Marc-André Lurau <marcandre.lureau@redhat.com>
23 using GLib;
25 /**
26 * Represents a section that should be processed on condition.
28 public class Vala.CCodeIfSection : CCodeFragment {
29 /**
30 * The expression
32 public string expression { get; set; }
34 public CCodeIfSection (string expr) {
35 expression = expr;
38 public override void write (CCodeWriter writer) {
39 writer.write_string ("#if ");
40 writer.write_string (expression);
41 foreach (CCodeNode node in get_children ()) {
42 node.write_combined (writer);
44 writer.write_string ("#endif");
45 writer.write_newline ();
48 public override void write_declaration (CCodeWriter writer) {