1// From the SWIG documentation:
2//		Unlike #include, %include includes each file once
3//		(and will not reload the file on subsequent %include declarations).
4//		Therefore, it is not necessary to use include-guards in SWIG interfaces.
5// So you can include this file and .i files for other C types
6%include "stdint.i"
7%include "carrays.i"
8%array_class(uint16_t, uint16Array);
9