attribute.i 496 B

123456789101112131415161718192021
  1. /* -----------------------------------------------------------------------------
  2. * attribute.i
  3. *
  4. * SWIG library file for implementing attributes.
  5. * ----------------------------------------------------------------------------- */
  6. /* we use a simple exception warning here */
  7. %{
  8. #include <stdio.h>
  9. %}
  10. #define %attribute_exception(code,msg) printf("%s\n",msg)
  11. #ifndef %arg
  12. #define %arg(x...) x
  13. #endif
  14. #ifndef %mangle
  15. #define %mangle(Type...) #@Type
  16. #endif
  17. %include <typemaps/attribute.swg>