]> git.draconx.ca Git - gob-dx.git/blobdiff - src/checks.h
Release 0.93.5
[gob-dx.git] / src / checks.h
index 53d19d504e55f744c696357492c57e287c965b8b..8d2030066a1896fae6bdf6c011baa99d564313d6 100644 (file)
@@ -1,5 +1,6 @@
 /* GOB C Preprocessor
  * Copyright (C) 1999-2000 the Free Software Foundation.
+ * Copyright (C) 2000 Eazel, Inc.
  *
  * Author: George Lebl
  *
 #ifndef _CHECKS_H_
 #define _CHECKS_H_
 
-void check_duplicate(Class *c, Node *node, char *id, int line_no);
 void check_duplicate_symbols(Class *c);
+void check_duplicate_overrides(Class *c);
 void check_bad_symbols(Class *c);
-void check_duplicate_named(Class *c,Node *node,char *id, int line_no);
 void check_duplicate_signals_args(Class *c);
 void check_public_new(Class *c);
 void check_vararg(Class *c);
@@ -39,5 +39,7 @@ 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