It would be nice if the "Move Implementation to Source File" command could also applied to functions:
Save.h:
namespace foo
{
     void save(void *data)
     {
     }
}
=> 
Save.h:
namespace foo
{
     void save(void *data);
}
Save.cpp:
namespace foo
{
void save(void *data)
{
}
}