codegen: Fix floating reference regression with Variants
[vala-gnome.git] / codegen / valactype.vala
blob1190299cb8a143a82f7f722c627a25a51a54b725
1 /* valactype.vala
3 * Copyright (C) 2009 Mark Lee
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 * Mark Lee <marklee@src.gnome.org>
23 /**
24 * A C type, used only for code generation purposes.
26 public class Vala.CType : DataType {
27 /**
28 * The name of the C type.
30 public string ctype_name { get; set; }
32 public CType (string ctype_name) {
33 this.ctype_name = ctype_name;
36 public override DataType copy () {
37 return new CType (ctype_name);