<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">Thanks a lot!<br><br>--- Bill Lorensen <i>&lt;bill.lorensen@gmail.com&gt;</i> schrieb am <b>Sa, 8.8.2009:<br></b><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"><b><br>Von: Bill Lorensen &lt;bill.lorensen@gmail.com&gt;<br>Betreff: Re: [vtkusers] Creating an array of objects of a VTK-class<br>An: "Dmitri Danewitz" &lt;d.danewitz@yahoo.de&gt;<br>CC: vtkusers@vtk.org<br>Datum: Samstag, 8. August 2009, 17:38<br><br></b><div class="plainMail"><b>You could use and std::vector&lt;vtkRectilinearGridReader *&gt; Reader;<br>for(int nr = 0; nr &lt; number; nr++)<br>&nbsp; {<br>&nbsp; Reader.push_back(vtkRectilinearGridReader::New());<br>&nbsp; }<br><br>or you could use the older C-style with malloc<br><br><br>On Sat, Aug 8, 2009 at 12:57 PM, Dmitri Danewitz&lt;<a ymailto="mailto:d.danewitz@yahoo.de"
 href="/mc/compose?to=d.danewitz@yahoo.de">d.danewitz@yahoo.de</a>&gt; wrote:<br>&gt; Hello,<br>&gt;<br>&gt; I'm trying to create multiple objects of the vtkRectilinearReader class. It<br>&gt; works fine, if I do it like this:<br>&gt;<br>&gt; const int number = 4;<br>&gt; &nbsp;&nbsp;vtkRectilinearGridReader *Reader[number];<br>&gt; &nbsp;&nbsp;for(int&nbsp;nr = 0;&nbsp;nr &lt; number; nr++)<br>&gt; &nbsp;&nbsp;{<br>&gt; &nbsp;&nbsp;&nbsp;Reader[nr] = vtkRectilinearGridReader::New();<br>&gt; &nbsp;&nbsp;}<br>&gt;<br>&gt;<br>&gt; But when "number" is not a constant, this doesn't work. Is there a away to<br>&gt; do this without having "number" to be a constant?<br>&gt;<br>&gt; Thanks<br>&gt; Dmitri<br>&gt;<br>&gt; _______________________________________________<br>&gt; Powered by www.kitware.com<br>&gt;<br>&gt; Visit other Kitware open-source projects at<br>&gt; <a href="http://www.kitware.com/opensource/opensource.html"
 target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>&gt;<br>&gt; Please keep messages on-topic and check the VTK FAQ at:<br>&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>&gt;<br>&gt; Follow this link to subscribe/unsubscribe:<br>&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>&gt;<br>&gt;<br></b></div></blockquote></td></tr></table><br>