Help Send Art+Logic to SXSW 2019

Help Send Art+Logic to SXSW 2019

Art+Logic has submitted three proposals to present panels at the 2019 SXSW Interactive Festival that will take place March 8-12, 2019 in Austin, Texas. Since SXSW has received over 5000 proposals for approximately 750 sessions, it’s not going to be trivial to...
Art+Logic @ SXSW2018

Art+Logic @ SXSW2018

Once again, Art+Logic will have folks attending the annual South by Southwest Interactive Festival in Austin, Texas. If you’re there and want to speak with someone from our sales, engineering, or recruiting groups, we’ll be attending from March 9-14. 
To set up a meeting, send an email to inquiries@artandlogic.com or send a Direct Message on Twitter to @artandlogic.

Net Neutrality Day of Action

Net Neutrality Day of Action

July 12, 2017 is a Day of Action on #netneutrality — learn about the issues and how to contact the FCC and your congressional representatives to keep ISPs from being able to throttle or block content.

Art+Logic at SXSW Interactive 2017

Art+Logic at SXSW Interactive 2017

Once again, Art & Logic will have representatives from our development, recruiting, and sales/marketing groups attending the South by Southwest Interactive Festival in Austin, Texas from March 10th – 14th. We’d love to meet with anyone there who’s interested in talking about a software development project or opportunities for software developers & designers at A&L.

A C++ Class Factory for JUCE

A C++ Class Factory for JUCE

So, I’m working on a side project (as one does), and reach the point in development where I need to be able to take a tree of objects that all share a common base class and persist them to and from disk.
I prefer using plain text files to binary for a bunch of different reasons, so the problem really boils down to:
At runtime, I need to be able to convert a string containing the name of a class into a pointer to an object of the corresponding C++ class. Sounds simple, right?