In python I can do:
from long_and_painful import still_way_to_long as short
In C++ I am stuck with:
using long::and::painful::stillWayToLong;
... //Code and Stuff
stillWayToLong("Why must I type this so often?");
Am I missing something that would make this more pythonic?