Hi all,<br><br>I'm using an updated CVS version of VTK.<br><br>First thing I noticed, the file build_vtk/GUISupport/Qt/Chart/vtkQtChartExport.h (generated during build) was not copied across in the installation process.<br>
<br>Second thing, the QT classes use the following syntax<br>class Whatnot<br>{<br> signals:<br> etc;<br> public slots:<br> etc;<br>};<br><br>This conflicts with my project which uses boost::signals. From QT4, they have supported the following syntax:<br>
<br>class Whatnot<br>{<br> Q_SIGNALS:<br> etc;<br>public Q_SLOTS:<br> etc;<br>};<br><br><br>Can we change it to the new syntax? I will have to go ahead and do it in my copy anyway, but its going to be a pain each time I update my copy.<br>
<br>thanks<br>Paul<br><br>