<div dir="ltr"><div class="gmail_default" style="font-family:tahoma,sans-serif">gcc 4.7.2 and VS2012 have pretty good support for it. </div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br></div><div class="gmail_default" style="font-family:tahoma,sans-serif">I've been using C++11 extensively the past year or so;  it makes a huge difference for enabling decoupling of modules, simplified syntax, and easy memory management. </div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br></div><div class="gmail_default" style="font-family:tahoma,sans-serif">decoupling:     std::function<returnType (args,...)>  is easier to understand and more generally applicable than VTK Observers. </div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br></div><div class="gmail_default" style="font-family:tahoma,sans-serif">easy memory management:  std::unique_ptr, std::shared_ptr, std::weak_ptr  are straightforward to use and don't have the limitation of requiring a vtkObject base class. </div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br></div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br></div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 16, 2015 at 12:27 PM, Ben Boeckel <span dir="ltr"><<a href="mailto:ben.boeckel@kitware.com" target="_blank">ben.boeckel@kitware.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Mon, Mar 16, 2015 at 14:09:26 -0400, Sean McBride wrote:<br>
> The motivation being:<br>
>  - reduce cruft in the codebase<br>
>  - allow use of newer language features (C++11 eventually)<br>
<br>
FWIW, using C++11 support would bump to gcc 4.8 and VS2013 for<br>
(practical) purposes (gcc 4.4 and VS2010 have rudimentary support for<br>
it, but nothing I would rely on).<br>
<br>
> Thoughts?<br>
<br>
+1.<br>
<br>
--Ben<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 <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtk-developers" target="_blank">http://markmail.org/search/?q=vtk-developers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtk-developers" target="_blank">http://public.kitware.com/mailman/listinfo/vtk-developers</a><br>
<br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><br>_______________<br>Peter  Karasev<br><a href="mailto:karasevpa@gmail.com" target="_blank">karasevpa@gmail.com</a></div>
</div>