c++ - What is the correct sstream include path for swig interface file? -


i generating c++ source towards android, swig 2.0, , use . addind either

%include <std_sstream.i> 

or

%include <sstream.i> 

give me eror include file not recognized.

what correct include ?

my environment

ubuntu 13.04 64 bits.

gcc 4.7.3

android ndk r8e

thanks in advance

you might try %include <std/std_sstream.i> , see happens (that implementations of ruby , python files do). if doesn't work post errors. finally, might consider whether want string stream in interface. might better pass string through interface?


Comments