关于vc6中利用matlab编程解决办法

关于vc6中利用matlab编程我在vc6中调用matlab6.5来编程,在debug版本下面通过了,但是在release下面没有通过

关于vc6中利用matlab编程
我在vc6中调用matlab6.5来编程,在debug版本下面通过了,但是在release下面没有通过,出现这样一个问题:
c:\matlab6p5\extern\include\cpp\matmtxif.h(31)   :   fatal   error   C1083:   Cannot   open   include   file:   'strstream.h ':   No   such   file   or   directory
请问有知道怎么解决的吗?


[解决办法]
#include <strstream>

strstream.h是标准c++库, 必须这样include, 类似使用STL相关库头文件.
[解决办法]
UP