]> git.draconx.ca Git - gob-dx.git/blob - src/checks.h
Release 1.0.2
[gob-dx.git] / src / checks.h
1 /* GOB C Preprocessor
2  * Copyright (C) 1999-2000 the Free Software Foundation.
3  * Copyright (C) 2000 Eazel, Inc.
4  *
5  * Author: George Lebl
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the  Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20  * USA.
21  */
22
23 #ifndef _CHECKS_H_
24 #define _CHECKS_H_
25
26 void check_duplicate_symbols(Class *c);
27 void check_duplicate_overrides(Class *c);
28 void check_bad_symbols(Class *c);
29 void check_duplicate_signals_args(Class *c);
30 void check_public_new(Class *c);
31 void check_vararg(Class *c);
32 void check_firstarg(Class *c);
33 void check_nonvoidempty(Class *c);
34 void check_signal_args(Class *c);
35 void check_argument_types(Class *c);
36 void check_func_arg_checks(Class *c);
37
38 int count_signals(Class *c);
39 int count_arguments(Class *c);
40 int count_overrides(Class *c);
41 int count_privates(Class *c);
42 int count_protecteds(Class *c);
43 int count_destructors(Class *c);
44 int count_initializers(Class *c);
45
46 #endif