<br>Hi Boris,<br><br>Thanks for sharing your findings.<br><br>This is interesting...<br><br>The only &quot;time.h&quot; file that I see in the ITK source tree is:<br><br>           Insight/Utilities/vxl/vcl/vcl_sys/time.h<br>
<br>is that the file that you renamed as   &quot;ITKtime.h&quot;    ?<br><br><br>  Please let us know,<br><br><br>        Thanks<br><br><br>              Luis<br><br><br>---------------------------------------------------------------------------------------<br>
<div class="gmail_quote">On Sun, Apr 11, 2010 at 11:54 PM, Boris Shabash <span dir="ltr">&lt;<a href="mailto:bshabash@hotmail.com">bshabash@hotmail.com</a>&gt;</span> 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 Luis<br>
<br>
I got the same error when I simply created a new C++ command utility tool in<br>
xcode and tried to compile while including ITK files.<br>
<br>
HOWEVER, it seems to compile now once I changed the name of ITK&#39;s &quot;time.h&quot;<br>
file into &quot;ITKtime.h&quot; and recompiled the entire Xcode project that was<br>
produced with Cmake. Now both my Obj-C++ and C++ projects seem to compile<br>
fine. But I wonder, changing the file name from &quot;time.h&quot; to &quot;ITKtime.h&quot;<br>
should have definitely introduced errors, but it didn&#39;t. Which files use<br>
ITK&#39;s &quot;time.h&quot; file?<br>
<br>
Boris<br>
<div><div></div><div class="h5"><br>
Luis Ibanez wrote:<br>
&gt;<br>
&gt; Hi Boris,<br>
&gt;<br>
&gt; Thanks for sharing your findings.<br>
&gt;<br>
&gt; More that &quot;time.h&quot; we probably should track<br>
&gt; includes for &quot;ctime&quot;, since that is the file<br>
&gt; where the error message is reported:<br>
&gt;<br>
&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:66: error:<br>
&gt; &#39;::clock_t&#39; has not been declared<br>
&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:68: error:<br>
&gt; &#39;::tm&#39;<br>
&gt; has not been declared<br>
&gt;<br>
&gt;<br>
&gt; The &quot;ctime&quot; header is included in ITK from<br>
&gt; the following files:<br>
&gt;<br>
&gt; Utilities/vxl/vcl/vcl_ctime.h:# include &lt;ctime&gt;<br>
&gt; Utilities/vxl/vcl/iso/vcl_ctime.h:#include &lt;ctime&gt;<br>
&gt;<br>
&gt;<br>
&gt; I&#39;m not familiar with the iPhoneOS development environment....<br>
&gt; so I&#39;m just wondering if it doesn&#39;t get to be recognized by one<br>
&gt; of the manual configurations that VXL has predefined.<br>
&gt;<br>
&gt; If  you open the file<br>
&gt;<br>
&gt;              Insight/Utilities/vxl/vcl/vcl_ctime.h<br>
&gt;<br>
&gt; You will see the following code:<br>
&gt;<br>
&gt; #ifndef vcl_ctime_h_<br>
&gt; #define vcl_ctime_h_<br>
&gt; /*<br>
&gt;   fsm<br>
&gt; */<br>
&gt;<br>
&gt; #include &quot;vcl_compiler.h&quot;<br>
&gt;<br>
&gt; // Purpose: provide access to the &lt;time.h&gt; standard C header.<br>
&gt;<br>
&gt; #if !VCL_CXX_HAS_HEADER_CTIME || defined(VCL_METRO_WERKS)<br>
&gt; # include &lt;time.h&gt;<br>
&gt; # define vcl_generic_ctime_STD /* */<br>
&gt; # include &quot;generic/vcl_ctime.h&quot;<br>
&gt; #elif defined(VCL_VC60)<br>
&gt; # include &lt;ctime&gt;<br>
&gt; # define vcl_generic_ctime_STD /* */<br>
&gt; # include &quot;generic/vcl_ctime.h&quot;<br>
&gt; #else<br>
&gt; # include &quot;iso/vcl_ctime.h&quot;<br>
&gt; #endif<br>
&gt;<br>
&gt; // ??<br>
&gt; #ifndef VCL_WIN32<br>
&gt; #include &lt;sys/times.h&gt;<br>
&gt; #endif<br>
&gt;<br>
&gt; #endif // vcl_ctime_h_<br>
&gt;<br>
&gt;<br>
&gt; Do you recognize in this code something that would be<br>
&gt; defined differently between MacOS and the iPhoneOS ?<br>
&gt;<br>
&gt; You may also find interesting content in the file:<br>
&gt;<br>
&gt; /home/ibanez/src/Insight/Utilities/vxl/vcl/vcl_compiler.h<br>
&gt;<br>
&gt;<br>
&gt;     Please let us know,<br>
&gt;<br>
&gt;<br>
&gt;            Thanks<br>
&gt;<br>
&gt;<br>
&gt;                   Luis<br>
&gt;<br>
&gt;<br>
&gt; -----------------------------------------------------------------------<br>
&gt; On Sat, Apr 10, 2010 at 9:33 AM, Luis Ibanez<br>
&gt; &lt;<a href="mailto:luis.ibanez@kitware.com">luis.ibanez@kitware.com</a>&gt;wrote:<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt; Hi Boris,<br>
&gt;&gt;<br>
&gt;&gt; It would seem that &quot;clock_t&quot; is not defined in the<br>
&gt;&gt; expected location in your platform.<br>
&gt;&gt;<br>
&gt;&gt; Please try the following example first<br>
&gt;&gt; (independently of ITK):<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; (taken from):<br>
&gt;&gt; <a href="http://www.cplusplus.com/reference/clibrary/ctime/clock/" target="_blank">http://www.cplusplus.com/reference/clibrary/ctime/clock/</a><br>
&gt;&gt;<br>
&gt;&gt; /* clock example: countdown */<br>
&gt;&gt; #include &lt;stdio.h&gt;<br>
&gt;&gt; #include &lt;time.h&gt;<br>
&gt;&gt;<br>
&gt;&gt; void wait ( int seconds )<br>
&gt;&gt; {<br>
&gt;&gt;   clock_t endwait;<br>
&gt;&gt;   endwait = clock () + seconds * CLOCKS_PER_SEC ;<br>
&gt;&gt;   while (clock() &lt; endwait) {}<br>
&gt;&gt;<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt; int main ()<br>
&gt;&gt; {<br>
&gt;&gt;   int n;<br>
&gt;&gt;   printf (&quot;Starting countdown...\n&quot;);<br>
&gt;&gt;   for (n=10; n&gt;0; n--)<br>
&gt;&gt;   {<br>
&gt;&gt;     printf (&quot;%d\n&quot;,n);<br>
&gt;&gt;     wait (1);<br>
&gt;&gt;<br>
&gt;&gt;   }<br>
&gt;&gt;   printf (&quot;FIRE!!!\n&quot;);<br>
&gt;&gt;   return 0;<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; And let us know if it can be compiled in your platform.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;      Thanks<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;           Luis<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; ---------------------------------------------------------------------------------------------------<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Apr 9, 2010 at 10:24 PM, Boris Shabash<br>
&gt;&gt; &lt;<a href="mailto:bshabash@hotmail.com">bshabash@hotmail.com</a>&gt;wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Hello everyone<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I am currently trying to compile ITK on the iphoneOS and for that I need<br>
&gt;&gt;&gt; to<br>
&gt;&gt;&gt; be working in the Xcode environment.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I&#39;ve downloaded ITK and Cmake and created an Xcode project for ITK using<br>
&gt;&gt;&gt; Cmake.<br>
&gt;&gt;&gt; Now for the purpose of testing I&#39;ve created a new C++ command line<br>
&gt;&gt;&gt; utility<br>
&gt;&gt;&gt; tool and included all the paths to find the libraries and headers.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; However, when I try to compile the command line utility tool I get the<br>
&gt;&gt;&gt; following error from including the ITK paths:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:66: error:<br>
&gt;&gt;&gt; &#39;::clock_t&#39; has not been declared<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:68: error:<br>
&gt;&gt;&gt; &#39;::tm&#39;<br>
&gt;&gt;&gt; has not been declared<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:70: error:<br>
&gt;&gt;&gt; &#39;::clock&#39; has not been declared<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:71: error:<br>
&gt;&gt;&gt; &#39;::difftime&#39; has not been declared<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:72: error:<br>
&gt;&gt;&gt; &#39;::mktime&#39; has not been declared<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:73: error:<br>
&gt;&gt;&gt; &#39;::time&#39; has not been declared<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:74: error:<br>
&gt;&gt;&gt; &#39;::asctime&#39; has not been declared<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:75: error:<br>
&gt;&gt;&gt; &#39;::ctime&#39; has not been declared<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:76: error:<br>
&gt;&gt;&gt; &#39;::gmtime&#39; has not been declared<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:77: error:<br>
&gt;&gt;&gt; &#39;::localtime&#39; has not been declared<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/ctime:78: error:<br>
&gt;&gt;&gt; &#39;::strftime&#39; has not been declared<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:<br>
&gt;&gt;&gt; In member function &#39;_InIter std::time_get&lt;_CharT,<br>
&gt;&gt;&gt; _InIter&gt;::_M_extract_via_format(_InIter, _InIter, std::ios_base&amp;,<br>
&gt;&gt;&gt; std::_Ios_Iostate&amp;, tm*, const _CharT*) const&#39;:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1794:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1801:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1809:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1816:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1828:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1835:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1838:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1850:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1855:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1863:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1867:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1887:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1923:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:1931:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:<br>
&gt;&gt;&gt; In member function &#39;virtual _InIter std::time_get&lt;_CharT,<br>
&gt;&gt;&gt; _InIter&gt;::do_get_weekday(_InIter, _InIter, std::ios_base&amp;,<br>
&gt;&gt;&gt; std::_Ios_Iostate&amp;, tm*) const&#39;:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:2157:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:<br>
&gt;&gt;&gt; In member function &#39;virtual _InIter std::time_get&lt;_CharT,<br>
&gt;&gt;&gt; _InIter&gt;::do_get_monthname(_InIter, _InIter, std::ios_base&amp;,<br>
&gt;&gt;&gt; std::_Ios_Iostate&amp;, tm*) const&#39;:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:2203:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:<br>
&gt;&gt;&gt; In member function &#39;virtual _InIter std::time_get&lt;_CharT,<br>
&gt;&gt;&gt; _InIter&gt;::do_get_year(_InIter, _InIter, std::ios_base&amp;,<br>
&gt;&gt;&gt; std::_Ios_Iostate&amp;,<br>
&gt;&gt;&gt; tm*) const&#39;:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/bits/locale_facets.tcc:2230:<br>
&gt;&gt;&gt; error: invalid use of undefined type &#39;struct tm&#39;<br>
&gt;&gt;&gt; /Developer/SDKs/MacOSX10.5.sdk/usr/include/wchar.h:152: error: forward<br>
&gt;&gt;&gt; declaration of &#39;struct tm&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; What is going on?<br>
&gt;&gt;&gt; --<br>
&gt;&gt;&gt; View this message in context:<br>
&gt;&gt;&gt; <a href="http://old.nabble.com/ITK-with-Xcode-tp28199033p28199033.html" target="_blank">http://old.nabble.com/ITK-with-Xcode-tp28199033p28199033.html</a><br>
&gt;&gt;&gt; Sent from the ITK - Users mailing list archive at Nabble.com.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; _____________________________________<br>
&gt;&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Kitware offers ITK Training Courses, for more information visit:<br>
&gt;&gt;&gt; <a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt;&gt;&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt;&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt; _____________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><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; Kitware offers ITK Training Courses, for more information visit:<br>
&gt; <a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the ITK FAQ at:<br>
&gt; <a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
&gt;<br>
&gt;<br>
<br>
</div></div><font color="#888888">--<br>
View this message in context: <a href="http://old.nabble.com/ITK-with-Xcode-tp28199033p28213619.html" target="_blank">http://old.nabble.com/ITK-with-Xcode-tp28199033p28213619.html</a><br>
</font><div><div></div><div class="h5">Sent from the ITK - Users mailing list archive at Nabble.com.<br>
<br>
_____________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at<br>
<a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://www.kitware.com/products/protraining.html" target="_blank">http://www.kitware.com/products/protraining.html</a><br>
<br>
Please keep messages on-topic and check the ITK FAQ at:<br>
<a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.itk.org/mailman/listinfo/insight-users" target="_blank">http://www.itk.org/mailman/listinfo/insight-users</a><br>
</div></div></blockquote></div><br>