Sze Wan Lim | 28 Nov 03:31

Unable to find 'std_iostream.i'

Hi!
 
I am wrapping my C++ to C# interface. I tried to use the iostream library. I have check into my lib folder and std_iostream.i is available but I get error saying 'Unable to find 'std_iostream.i'. Did anyone face this problem before? Any solution to this?
 
In ReadFile.H
#include <iostream>
 
class ReadFile
{
public:
  
    ReadFile(
     ostream& logFileStream,
     ostream& stdOutStream);
 
}
 
in ReadFile.i
%module MyReadFile
 %{
 #include "ReadFile.H"
 %}
  
 %include "std_iostream.i"
 %include "ReadFile.H"
 
 Thanks!
 
SW
 
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Swig-user mailing list
Swig-user <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/swig-user

Gmane