Re: [Paraview] Creating Plugins

2008-12-30 Thread Michael Jackson
-Ursprüngliche Nachricht- Von: Moreland, Kenneth [mailto:kmo...@sandia.gov] Gesendet: Mo 22.12.2008 17:42 An: Schindler Benjamin; Michael Jackson Cc: ParaView Betreff: Re: [Paraview] Creating Plugins Benjamin, I don't think any of the developers are aware of bug that causes the VTK wrapping

Re: [Paraview] Creating Plugins

2008-12-29 Thread Berk Geveci
the comment and the ETX) This has caused the hang here Cheers Benjamin -Ursprüngliche Nachricht- Von: Moreland, Kenneth [mailto:kmo...@sandia.gov] Gesendet: Mo 22.12.2008 17:42 An: Schindler Benjamin; Michael Jackson Cc: ParaView Betreff: Re: [Paraview] Creating Plugins

Re: [Paraview] Creating Plugins

2008-12-22 Thread Moreland, Kenneth
Benjamin, I don't think any of the developers are aware of bug that causes the VTK wrapping parser to hang. Could you send us a piece of code that demonstrates the problem? -Ken On 12/19/08 6:33 AM, Benjamin Schindler bschind...@student.ethz.ch wrote: I just renamed the baseclass now (It

[Paraview] Creating Plugins

2008-12-19 Thread Benjamin Schindler
Hi I'm trying to create a paraview plugin out of a filter I'm currently writing for my own viewer. I'm hitting several roadblocks with the parser: *** SYNTAX ERROR found in parsing the header blablabla I currently found the following issues: class Something; // Not allowed because it does

Re: [Paraview] Creating Plugins

2008-12-19 Thread Michael Jackson
Not sure about the multiple inheritance issue but for methods that don't take vtk type primitives surround the method declaration with the following: //btx void SomeFunction(... ); //etx _ Mike Jackson

Re: [Paraview] Creating Plugins

2008-12-19 Thread Benjamin Schindler
I just renamed the baseclass now (It is not inside a library so that's no issue) and the parser seems to accept this. Adding //btx //etx works but that's not really an ideal solution. IMHO, the grammar of the parser should be changed for such things to be possible. I'm using the svn version