~kkubasik/vala/motu_package

« back to all changes in this revision

Viewing changes to vala-0.0.7/vala/valabreakstatement.h

  • Committer: Kevin Kubasik
  • Date: 2007-04-23 16:46:12 UTC
  • Revision ID: kevin@kubasik.net-20070423164612-2nrkvw6m0lxixxft
inital import of vala 0.0.8 and its ubuntu packaging

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* valabreakstatement.vala
 
2
 *
 
3
 * Copyright (C) 2006  Jürg Billeter
 
4
 *
 
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.
 
9
 
 
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.
 
14
 
 
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
 
18
 *
 
19
 * Author:
 
20
 *      Jürg Billeter <j@bitron.ch>
 
21
 */
 
22
 
 
23
#ifndef __VALABREAKSTATEMENT_H__
 
24
#define __VALABREAKSTATEMENT_H__
 
25
 
 
26
#include <glib.h>
 
27
#include <glib-object.h>
 
28
#include <vala/valastatement.h>
 
29
#include <vala/valacodenode.h>
 
30
 
 
31
G_BEGIN_DECLS
 
32
 
 
33
 
 
34
#define VALA_TYPE_BREAK_STATEMENT (vala_break_statement_get_type ())
 
35
#define VALA_BREAK_STATEMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VALA_TYPE_BREAK_STATEMENT, ValaBreakStatement))
 
36
#define VALA_BREAK_STATEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VALA_TYPE_BREAK_STATEMENT, ValaBreakStatementClass))
 
37
#define VALA_IS_BREAK_STATEMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VALA_TYPE_BREAK_STATEMENT))
 
38
#define VALA_IS_BREAK_STATEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VALA_TYPE_BREAK_STATEMENT))
 
39
#define VALA_BREAK_STATEMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), VALA_TYPE_BREAK_STATEMENT, ValaBreakStatementClass))
 
40
 
 
41
typedef struct _ValaBreakStatementPrivate ValaBreakStatementPrivate;
 
42
 
 
43
/**
 
44
 * Represents a break statement in the source code.
 
45
 */
 
46
struct _ValaBreakStatement {
 
47
        ValaStatement parent;
 
48
        ValaBreakStatementPrivate * priv;
 
49
};
 
50
struct _ValaBreakStatementClass {
 
51
        ValaStatementClass parent;
 
52
};
 
53
 
 
54
ValaBreakStatement* vala_break_statement_new (ValaSourceReference* source);
 
55
GType vala_break_statement_get_type ();
 
56
 
 
57
G_END_DECLS
 
58
 
 
59
#endif