<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">Hum...<br><br>thanks, Mike, it seems better now ! Just 10 errors ! :)<br><br>Take a look at them:<br><br>Error&nbsp;&nbsp;&nbsp; 11&nbsp;&nbsp;&nbsp; error LNK2001: unresolved external symbol "private: virtual char const * __thiscall vtkExampleTiffWriter::GetClassNameInternal(void)const " (?GetClassNameInternal@vtkExampleTiffWriter@@EBEPBDXZ)&nbsp;&nbsp;&nbsp; vtkExampleTiffWriter.obj&nbsp;&nbsp;&nbsp; <br>Error&nbsp;&nbsp;&nbsp; 12&nbsp;&nbsp;&nbsp; error LNK2001: unresolved external symbol "public: virtual int __thiscall vtkExampleTiffWriter::IsA(char const *)" (?IsA@vtkExampleTiffWriter@@UAEHPBD@Z)&nbsp;&nbsp;&nbsp; vtkExampleTiffWriter.obj&nbsp;&nbsp;&nbsp; <br>Error&nbsp;&nbsp;&nbsp; 13&nbsp;&nbsp;&nbsp; error LNK2001: unresolved external symbol "protected: virtual class vtkObjectBase * __thiscall vtkExampleTiffWriter::NewInstanceInternal(void)const "
 (?NewInstanceInternal@vtkExampleTiffWriter@@MBEPAVvtkObjectBase@@XZ)&nbsp;&nbsp;&nbsp; vtkExampleTiffWriter.obj&nbsp;&nbsp;&nbsp; <br>Error&nbsp;&nbsp;&nbsp; 14&nbsp;&nbsp;&nbsp; error LNK2001: unresolved external symbol "public: virtual void __thiscall vtkExampleTiffWriter::SetCompression(int)" (?SetCompression@vtkExampleTiffWriter@@UAEXH@Z)&nbsp;&nbsp;&nbsp; vtkExampleTiffWriter.obj&nbsp;&nbsp;&nbsp; <br>Error&nbsp;&nbsp;&nbsp; 15&nbsp;&nbsp;&nbsp; error LNK2001: unresolved external symbol "public: virtual int __thiscall vtkExampleTiffWriter::GetCompressionMinValue(void)" (?GetCompressionMinValue@vtkExampleTiffWriter@@UAEHXZ)&nbsp;&nbsp;&nbsp; vtkExampleTiffWriter.obj&nbsp;&nbsp;&nbsp; <br>Error&nbsp;&nbsp;&nbsp; 16&nbsp;&nbsp;&nbsp; error LNK2001: unresolved external symbol "public: virtual int __thiscall vtkExampleTiffWriter::GetCompressionMaxValue(void)" (?GetCompressionMaxValue@vtkExampleTiffWriter@@UAEHXZ)&nbsp;&nbsp;&nbsp;
 vtkExampleTiffWriter.obj&nbsp;&nbsp;&nbsp; <br>Error&nbsp;&nbsp;&nbsp; 17&nbsp;&nbsp;&nbsp; error LNK2001: unresolved external symbol "public: virtual int __thiscall vtkExampleTiffWriter::GetCompression(void)" (?GetCompression@vtkExampleTiffWriter@@UAEHXZ)&nbsp;&nbsp;&nbsp; vtkExampleTiffWriter.obj&nbsp;&nbsp;&nbsp; <br>Error&nbsp;&nbsp;&nbsp; 18&nbsp;&nbsp;&nbsp; error LNK2019: unresolved external symbol "__declspec(dllimport) protected: virtual __thiscall vtkExampleTiffWriter::~vtkExampleTiffWriter(void)" (__imp_??1vtkExampleTiffWriter@@MAE@XZ) referenced in function "protected: virtual void * __thiscall vtkExampleTiffWriter::`scalar deleting destructor'(unsigned int)" (??_GvtkExampleTiffWriter@@MAEPAXI@Z)&nbsp;&nbsp;&nbsp; vtkExampleTiffWriter.obj&nbsp;&nbsp;&nbsp; <br>Error&nbsp;&nbsp;&nbsp; 19&nbsp;&nbsp;&nbsp; error LNK2019: unresolved external symbol "__declspec(dllimport) const vtkExampleTiffWriter::`vftable'"
 (__imp_??_7vtkExampleTiffWriter@@6B@) referenced in function "protected: __thiscall vtkExampleTiffWriter::vtkExampleTiffWriter(void)" (??0vtkExampleTiffWriter@@IAE@XZ)&nbsp;&nbsp;&nbsp; vtkExampleTiffWriter.obj&nbsp;&nbsp;&nbsp; <br>Error&nbsp;&nbsp;&nbsp; 20&nbsp;&nbsp;&nbsp; fatal error LNK1120: 9 unresolved externals&nbsp;&nbsp;&nbsp; C:\Nacad\Plugins\ExampleTiffWriter.build\Debug\SMExampleTiffWriter.dll&nbsp;&nbsp;&nbsp; <br><br>Do you know what is missing ?<br><br>Thanks a lot for the attention !<br><br>Rafael March.<br><br><br>--- On <b>Mon, 9/8/08, Mike Jackson <i>&lt;mike.jackson@bluequartz.net&gt;</i></b> wrote:<br><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;">From: Mike Jackson &lt;mike.jackson@bluequartz.net&gt;<br>Subject: Re: [Paraview] Writer example<br>To: rafaelmarch3@yahoo.com<br>Cc: paraview@paraview.org<br>Date: Monday, September 8, 2008, 6:29 PM<br><br><pre>Try putting the following
 at the top of the .h file:<br><br><br>#ifndef _MXA_DLL_EXPORT_H_<br>#define _MXA_DLL_EXPORT_H_<br><br>/* Cmake will define MXADataModel_EXPORTS on Windows when it<br>configures to build a shared library. If you are going to use<br>another build system on windows or create the visual studio<br>projects by hand you need to define MXADataModel_EXPORTS when<br>building a DLL on windows.<br>*/<br><br>#if defined (WIN32) &amp;&amp; defined (BUILD_SHARED_LIBS)<br>#if defined (_MSC_VER)<br>#pragma warning(disable: 4251)<br>#endif<br>   #if defined(SMExampleTiffWriter_EXPORT)<br>     #define  VTK_IO_EXPORT __declspec(dllexport)<br>   #else<br>     #define  VTK_IO_EXPORT __declspec(dllimport)<br>   #endif /* MXADataModel_EXPORTS */<br>#else /* defined (_WIN32) &amp;&amp; defined (MXA_BUILD_SHARED_LIBS)  */<br>  #define VTK_IO_EXPORT<br>#endif<br><br><br>#endif /* _MXA_DLL_EXPORT_H_ */<br><br>We can clean this up later..but see if that gets rid of the link
 errors.<br><br>  _________________________________________________<br>| Mike Jackson - Principal Software Engineer      |<br>| BlueQuartz Software                             |<br>| mike.jackson@bluequartz.net                     |<br>| www.bluequartz.net                              |<br>---------------------------------------------------<br><br>On Sep 8, 2008, at 1:47 PM, Rafael March wrote:<br><br>&gt; Hi,<br>&gt;<br>&gt; unfortunatelly, I couldn't compile it. Got 17 "error<br>LNK:unresolved  <br>&gt; external symbol" like errors. Have any idea what's wrong ? Do you<br> <br>&gt; have another example ?<br>&gt;<br>&gt; Thanks !<br>&gt;<br>&gt; Rafael March.<br>&gt;<br>&gt; --- On Mon, 9/8/08, Mike Jackson &lt;mike.jackson@bluequartz.net&gt;<br>wrote:<br>&gt; From: Mike Jackson &lt;mike.jackson@bluequartz.net&gt;<br>&gt; Subject: Re: [Paraview] Writer example<br>&gt; To: rafaelmarch3@yahoo.com<br>&gt; Cc: paraview@paraview.org<br>&gt; Date: Monday,
 September 8, 2008, 3:50 PM<br>&gt;<br>&gt; Give this a try. It does load with the latest ParaView CVS. Could not<br>&gt; actually figure out how to use it but the plugin did compile and load.<br>&gt;<br>&gt; OS X 10.5.4, ParaView CVS, Xcode 3.1 tooling. CMake 2.6.1<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;  _________________________________________________<br>&gt; | Mike Jackson - Principal Software Engineer      |<br>&gt; | BlueQuartz Software                             |<br>&gt; | mike.jackson@bluequartz.net                     |<br>&gt; | www.bluequartz.net                              |<br>&gt; ---------------------------------------------------<br>&gt;<br>&gt; On Sep 8, 2008, at 11:10 AM, Rafael March wrote:<br>&gt;<br>&gt; &gt; Dear friends,<br>&gt; &gt;<br>&gt; &gt; I'm trying to create my own writer, and I'm having some<br>problems.<br>&gt; I<br>&gt; &gt; wonder if anyone could send me a source code with an writer example,<br>&gt; &gt; so that I
 can use it as a template.<br>&gt; &gt;<br>&gt; &gt; I know that there is one called MyTiffWriter under Examples/Plugin/<br>&gt; &gt; Writer, in the latest cvs version of Paraview. I've already<br>compiled<br>&gt; &gt; it, and it works fine. But, it has no code implementation, just<br>&gt; &gt; overwrites the already existing vtkTiffWriter. So, it would be more<br>&gt; &gt; useful to me an example<br>&gt;  with an explicit writer implementation.<br>&gt; &gt;<br>&gt; &gt; Can anyone provide me this code ?<br>&gt; &gt;<br>&gt; &gt; Thanks in advance.<br>&gt; &gt;<br>&gt; &gt; Rafael March.<br>&gt; &gt;<br>&gt; &gt; _______________________________________________<br>&gt; &gt; ParaView mailing list<br>&gt; &gt; ParaView@paraview.org<br>&gt; &gt; http://www.paraview.org/mailman/listinfo/paraview<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; ParaView mailing
 list<br>&gt; ParaView@paraview.org<br>&gt; http://www.paraview.org/mailman/listinfo/paraview<br><br></pre></blockquote></td></tr></table><br>