You can&#39;t use the VTK_GRAPHICS_EXPORT macro unless your class is built into the vtkGraphics library itself. Make up your own equivalent macro for your library...<br><br><br><div class="gmail_quote">On Thu, Apr 17, 2008 at 1:36 PM, Renato N. Elias &lt;<a href="mailto:rnelias@nacad.ufrj.br">rnelias@nacad.ufrj.br</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
Hi folks,<br>
<br>
I&#39;m trying to write a simple graphics filter which takes a DataSet, compute something and add a CellData array to the output&#39;s DataSet. The structure of the filter is quite the same the vtkElevationFilter, so, I just copied the .cxx and .h and changed some stuffs.<br>

<br>
Here is the my header created from vtkElevationFilter.h: (all files are here <a href="http://www.nacad.ufrj.br/%7Ernelias/transfer/ColorBoundaryRegionsFilter.zip" target="_blank">http://www.nacad.ufrj.br/~rnelias/transfer/ColorBoundaryRegionsFilter.zip</a> )<br>

<br>
//--------------------------------------------------------------<br>
#ifndef __vtkColorBoundaryRegionsFilter_h<br>
#define __vtkColorBoundaryRegionsFilter_h<br>
<br>
#include &quot;vtkDataSetAlgorithm.h&quot;<br>
<br>
class VTK_GRAPHICS_EXPORT vtkColorBoundaryRegionsFilter : public vtkDataSetAlgorithm<br>
{<br>
public:<br>
&nbsp;static vtkColorBoundaryRegionsFilter* New();<br>
&nbsp;vtkTypeRevisionMacro(vtkColorBoundaryRegionsFilter, vtkDataSetAlgorithm);<br>
&nbsp;void PrintSelf(ostream&amp; os, vtkIndent indent);<br>
<br>
protected:<br>
&nbsp;vtkColorBoundaryRegionsFilter();<br>
&nbsp;~vtkColorBoundaryRegionsFilter();<br>
<br>
&nbsp;int RequestData(vtkInformation*,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vtkInformationVector**,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vtkInformationVector*);<br>
<br>
private:<br>
&nbsp;vtkColorBoundaryRegionsFilter(const vtkColorBoundaryRegionsFilter&amp;); &nbsp;// Not implemented.<br>
&nbsp;void operator=(const vtkColorBoundaryRegionsFilter&amp;); &nbsp;// Not implemented.<br>
};<br>
<br>
#endif<br>
//--------------------------------------------------------------<br>
<br>
The filter&#39;s algorithm is implemented in the RequestData method. My CMakeLists file is as follows:<br>
<br>
#---------------------------------------------------------------<br>
PROJECT(ColorBoundaryRegionsFilter)<br>
FIND_PACKAGE(VTK REQUIRED)<br>
INCLUDE(${VTK_USE_FILE})<br>
ADD_LIBRARY(ColorBoundaryRegionsFilter vtkColorBoundaryRegionsFilter.cxx)<br>
ADD_EXECUTABLE(test test.cxx vtkColorBoundaryRegionsFilter.cxx)<br>
#---------------------------------------------------------------<br>
<br>
I can have the filter compiled as library, the problem happens when I try to link with the following test program (. The linker gives me a bunch of error messages<br>
<br>
int main() {<br>
vtkColorBoundaryRegionsFilter* br = vtkColorBoundaryRegionsFilter::New();<br>
br-Delete();<br>
}<br>
<br>
Linker error:<br>
<br>
1&gt;vtkColorBoundaryRegionsFilter.obj : error LNK2019: unresolved external symbol &quot;public: void __thiscall vtkDataArrayTemplate&lt;int&gt;::InsertValue(int,int)&quot; (?InsertValue@?$vtkDataArrayTemplate@H@@QAEXHH@Z) referenced in function &quot;public: void __thiscall vtkIntArray::InsertValue(int,int)&quot; (?InsertValue@vtkIntArray@@QAEXHH@Z)<br>

1&gt;vtkColorBoundaryRegionsFilter.obj : error LNK2019: unresolved external symbol &quot;public: virtual __thiscall vtkOStreamWrapper::~vtkOStreamWrapper(void)&quot; (??1vtkOStreamWrapper@@UAE@XZ) referenced in function &quot;protected: virtual void __thiscall vtkColorBoundaryRegionsFilter::CollectRevisions(class std::basic_ostream&lt;char,struct std::char_traits&lt;char&gt; &gt; &amp;)&quot; (?CollectRevisions@vtkColorBoundaryRegionsFilter@@MAEXAAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z)<br>

1&gt;vtkColorBoundaryRegionsFilter.obj : error LNK2019: unresolved external symbol &quot;public: class vtkOStreamWrapper &amp; __thiscall vtkOStreamWrapper::operator&lt;&lt;(char const *)&quot; (??6vtkOStreamWrapper@@QAEAAV0@PBD@Z) referenced in function &quot;protected: virtual void __thiscall vtkColorBoundaryRegionsFilter::CollectRevisions(class std::basic_ostream&lt;char,struct std::char_traits&lt;char&gt; &gt; &amp;)&quot; (?CollectRevisions@vtkColorBoundaryRegionsFilter@@MAEXAAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z)<br>

1&gt;vtkColorBoundaryRegionsFilter.obj : error LNK2019: unresolved external symbol &quot;protected: virtual void __thiscall vtkDataSetToDataSetFilter::CollectRevisions(class std::basic_ostream&lt;char,struct std::char_traits&lt;char&gt; &gt; &amp;)&quot; (?CollectRevisions@vtkDataSetToDataSetFilter@@MAEXAAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) referenced in function &quot;protected: virtual void __thiscall vtkColorBoundaryRegionsFilter::CollectRevisions(class std::basic_ostream&lt;char,struct std::char_traits&lt;char&gt; &gt; &amp;)&quot; (?CollectRevisions@vtkColorBoundaryRegionsFilter@@MAEXAAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z)<br>

1&gt;vtkColorBoundaryRegionsFilter.obj : error LNK2019: unresolved external symbol &quot;public: __thiscall vtkOStreamWrapper::operator class std::basic_ostream&lt;char,struct std::char_traits&lt;char&gt; &gt; &amp;(void)&quot; (??BvtkOStreamWrapper@@QAEAAV?$basic_ostream@DU?$char_traits@D@std@@@std@@XZ) referenced in function &quot;protected: virtual void __thiscall vtkColorBoundaryRegionsFilter::CollectRevisions(class std::basic_ostream&lt;char,struct std::char_traits&lt;char&gt; &gt; &amp;)&quot; (?CollectRevisions@vtkColorBoundaryRegionsFilter@@MAEXAAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z)<br>

1&gt;vtkColorBoundaryRegionsFilter.obj : error LNK2019: unresolved external symbol &quot;public: __thiscall vtkOStreamWrapper::vtkOStreamWrapper(class std::basic_ostream&lt;char,struct std::char_traits&lt;char&gt; &gt; &amp;)&quot; (??0vtkOStreamWrapper@@QAE@AAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) referenced in function &quot;protected: virtual void __thiscall vtkColorBoundaryRegionsFilter::CollectRevisions(class std::basic_ostream&lt;char,struct std::char_traits&lt;char&gt; &gt; &amp;)&quot; (?CollectRevisions@vtkColorBoundaryRegionsFilter@@MAEXAAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z)<br>

1&gt;vtkColorBoundaryRegionsFilter.obj : error LNK2019: unresolved external symbol &quot;protected: __thiscall vtkDataSetToDataSetFilter::vtkDataSetToDataSetFilter(void)&quot; (??0vtkDataSetToDataSetFilter@@IAE@XZ) referenced in function &quot;protected: __thiscall vtkColorBoundaryRegionsFilter::vtkColorBoundaryRegionsFilter(void)&quot; (??0vtkColorBoundaryRegionsFilter@@IAE@XZ)<br>

1&gt;vtkColorBoundaryRegionsFilter.obj : error LNK2001: unresolved external symbol &quot;public: virtual void __thiscall vtkObjectBase::Delete(void)&quot; (?Delete@vtkObjectBase@@UAEXXZ)<br>
...<br>
<br>
Any idea?<br>
<br>
Regards<br>
<br>
Renato.<br>
_______________________________________________<br>
This is the private VTK discussion list.<br>
Please keep messages on-topic. Check the FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
</blockquote></div><br>