<DIV>Hi, everyone,</DIV>
<DIV> I use VC and VTK 5.0.3 to write a win32 console application.</DIV>
<DIV> in my codes, I want to use class vtkStdString to save some correlative information. but when I compile it, I get a error :</DIV>
<DIV> C:\vtk\common\vtkstdstring.h(25) : fatal error C1083: Cannot open include file: 'vtkstd/string': No such file or directory<BR> Error executing cl.exe.</DIV>
<DIV> so I have to find class vtkStdString's source codes, and I find this : </DIV>
<DIV> #include <vtkstd/string> // For the superclass.</DIV>
<DIV> and this is the reason that my codes make a mistake.</DIV>
<DIV> because in win32 console application, I could not use CString. and I only could use string.h, but vtk don't accept class string's output. </DIV>
<DIV> so who can tell me what I should do to correct this mistake? what is wrong with my VTK? do I need to recompile it again?</DIV>
<DIV> thank you for your help!</DIV>
<DIV> Mark</DIV>
<DIV> </DIV>
<DIV>PS. my original codes:</DIV>
<DIV>#include "vtkStdString.h"</DIV>
<DIV>vtkStdString str;</DIV>
<DIV> str = NULL;</DIV>
<DIV>vtkScaledTextActor * text = vtkScaledTextActor::New();</DIV>
<DIV> text->SetInput(str);</DIV>
<DIV> </DIV>