]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wxSWIG/Modules/debug.h
Merged the wxPy_newswig branch into the HEAD branch (main trunk)
[wxWidgets.git] / wxPython / wxSWIG / Modules / debug.h
diff --git a/wxPython/wxSWIG/Modules/debug.h b/wxPython/wxSWIG/Modules/debug.h
deleted file mode 100644 (file)
index 1a0f8dd..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-/*******************************************************************************
- * Simplified Wrapper and Interface Generator  (SWIG)
- * 
- * Author : David Beazley
- *
- * Department of Computer Science        
- * University of Chicago
- * 1100 E 58th Street
- * Chicago, IL  60637
- * beazley@cs.uchicago.edu
- *
- * Please read the file LICENSE for the copyright and terms by which SWIG
- * can be used and distributed.
- *******************************************************************************/
-
-class DEBUGLANG : public Language {
-private:
-  char *path;
-  char *module;
-public:
-  DEBUGLANG() {
-    path = "debug";
-    module = "swig";
-  }
-  void parse_args(int argc, char *argv[]);
-  void parse();
-  void create_function(char *, char *, DataType *, ParmList *); 
-  void link_variable(char *, char *, DataType *) ;
-  void declare_const(char *, char *, DataType *, char *);
-  void initialize(void);
-  void headers(void);
-  void close(void);
-  void set_module(char *mod_name, char **mod_list);
-  void set_init(char *init_name);
-  void add_native(char *, char *);
-  char *type_mangle(DataType *t) {
-    return t->print_mangle_default();
-  }
-  void cpp_member_func(char *, char *, DataType *, ParmList *);
-  void cpp_constructor(char *, char *, ParmList *);
-  void cpp_destructor(char *, char *);
-  void cpp_open_class(char *, char *, char *, int strip);
-  void cpp_close_class();
-  void cpp_inherit(char **, int mode = INHERIT_ALL);
-  void cpp_variable(char *, char *, DataType *);
-  void cpp_static_func(char *, char *, DataType *, ParmList *);
-  void cpp_declare_const(char *, char *, DataType *, char *);
-  void cpp_static_var(char *, char *, DataType *);
-  void pragma(char *, char *, char *);
-  void cpp_class_decl(char *, char *, char *);
-  
-};