/* DEBUG : Language specific headers go here */

/* DEBUG : Pointer conversion function here */

/* DEBUG : Language specific code here */

#define   SWIG_init     swig_init

#define   SWIG_name    "swig"
WRAPPER : int misc1(int );

WRAPPER : int misc2(int ,int );

C++ CLASS DECLARATION : class Misc
C++ CLASS DECLARATION : class Foo
C++ CLASS START : class Misc  ========================================

        MEMBER FUNC   : int misc3(double );

        MEMBER FUNC   : double misc4(double ,float );

C++ CLASS END ===================================================

C++ CLASS START : class Foo  ========================================

        CONSTRUCTOR   : Foo *Foo(int ,int );
C++ CLASS END ===================================================

SWIG POINTER-MAPPING TABLE


/* MODULE INITIALIZATION */

void swig_init() {
     ADD COMMAND    : misc1 --> int misc1(int );
     ADD COMMAND    : misc2 --> int misc2(int ,int );

     // C++ CLASS START : class Misc
     ADD MEMBER FUN : misc3 --> int misc3(double );
     ADD MEMBER FUN : misc4 --> double misc4(double ,float );
     // C++ CLASS END 


     // C++ CLASS START : class Foo
     ADD CONSTRUCT  : Foo --> Foo *Foo(int ,int );
     // C++ CLASS END 

}  /* END INIT */
/*
 * These are the pointer type-equivalency mappings. 
 * (Used by the SWIG pointer type-checker).
 */
	 SWIG_RegisterMapping("_signed_long","_long",0);
	 SWIG_RegisterMapping("_class_Foo","_Foo",0);
	 SWIG_RegisterMapping("_long","_unsigned_long",0);
	 SWIG_RegisterMapping("_long","_signed_long",0);
	 SWIG_RegisterMapping("_unsigned_long","_long",0);
	 SWIG_RegisterMapping("_Misc","_class_Misc",0);
	 SWIG_RegisterMapping("_signed_int","_int",0);
	 SWIG_RegisterMapping("_unsigned_short","_short",0);
	 SWIG_RegisterMapping("_signed_short","_short",0);
	 SWIG_RegisterMapping("_unsigned_int","_int",0);
	 SWIG_RegisterMapping("_short","_unsigned_short",0);
	 SWIG_RegisterMapping("_short","_signed_short",0);
	 SWIG_RegisterMapping("_int","_unsigned_int",0);
	 SWIG_RegisterMapping("_int","_signed_int",0);
	 SWIG_RegisterMapping("_class_Misc","_Misc",0);
	 SWIG_RegisterMapping("_Foo","_class_Foo",0);


syntax highlighted by Code2HTML, v. 0.9.1