/* GOB C Preprocessor * Copyright (C) 1999-2000 the Free Software Foundation. * Copyright (C) 2000 Eazel, Inc. * * Author: George Lebl * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. */ #ifndef _CHECKS_H_ #define _CHECKS_H_ void check_duplicate_symbols(Class *c); void check_duplicate_overrides(Class *c); void check_bad_symbols(Class *c); void check_duplicate_signals_args(Class *c); void check_public_new(Class *c); void check_vararg(Class *c); void check_firstarg(Class *c); void check_nonvoidempty(Class *c); void check_signal_args(Class *c); void check_argument_types(Class *c); int count_signals(Class *c); int count_arguments(Class *c); int count_overrides(Class *c); int count_privates(Class *c); int count_protecteds(Class *c); int count_destructors(Class *c); int count_initializers(Class *c); #endif