File: MessageNET.i

package info (click to toggle)
robotraconteur 1.2.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 101,380 kB
  • sloc: cpp: 1,149,268; cs: 87,653; java: 58,127; python: 26,897; ansic: 356; sh: 152; makefile: 90; xml: 51
file content (26 lines) | stat: -rw-r--r-- 1,195 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
%typemap(csclassmodifiers) MessageElementDataUtil "public partial class";
%typemap(csclassmodifiers) RobotRaconteur::MessageElement "public partial class";
%typemap(csclassmodifiers) RobotRaconteur::MessageEntry "public partial class";

%apply double INPUT[]  { double* array_in }
%apply double OUTPUT[]  { double* array_out }
%apply float INPUT[]  { float* array_in }
%apply float OUTPUT[]  { float* array_out }
%apply int8_t INPUT[]  { int8_t* array_in }
%apply int8_t OUTPUT[]  { int8_t* array_out }
%apply uint8_t INPUT[]  { uint8_t* array_in }
%apply uint8_t OUTPUT[]  { uint8_t* array_out }
%apply int16_t INPUT[]  { int16_t* array_in }
%apply int16_t OUTPUT[]  { int16_t* array_out }
%apply uint16_t INPUT[]  { uint16_t* array_in }
%apply uint16_t OUTPUT[]  { uint16_t* array_out }
%apply int32_t INPUT[]  { int32_t* array_in }
%apply int32_t OUTPUT[]  { int32_t* array_out }
%apply uint32_t INPUT[]  { uint32_t* array_in }
%apply uint32_t OUTPUT[]  { uint32_t* array_out }
%apply int64_t INPUT[]  { int64_t* array_in }
%apply int64_t OUTPUT[]  { int64_t* array_out }
%apply uint64_t INPUT[]  { uint64_t* array_in }
%apply uint64_t OUTPUT[]  { uint64_t* array_out }

%include "Message.i"