[vtkusers] vtkQtChart problems

Paul Harris harris.pc at gmail.com
Wed Jan 28 01:39:01 EST 2009


Hi all,

I'm using an updated CVS version of VTK.

First thing I noticed, the file
build_vtk/GUISupport/Qt/Chart/vtkQtChartExport.h (generated during build)
was not copied across in the installation process.

Second thing, the QT classes use the following syntax
class Whatnot
{
  signals:
   etc;
  public slots:
   etc;
};

This conflicts with my project which uses boost::signals.  From QT4, they
have supported the following syntax:

class Whatnot
{
  Q_SIGNALS:
     etc;
public Q_SLOTS:
     etc;
};


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.

thanks
Paul
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.vtk.org/pipermail/vtkusers/attachments/20090128/0bb823d9/attachment.htm>


More information about the vtkusers mailing list