if I have a decalaration like:
// Helper function called by DoCommandInternal().
void DoCommandInternalCreateSonar(
const CDoCommandInfo& Info,
CDoCommandResultInfo& ResultInfo);
and i use VAX to create an implementation, i get:
void
CGeoProjection::DoCommandInternalCreateSonar(const CDoCommandInfo& Info, CDoCommandResultInfo& ResultInfo)
{
}
now i've already changed the autotext format a bit to make i pretty, but what i really would like to see is have it word wrap the lines that exceed my column indicator like so:
void
CGeoProjection::DoCommandInternalCreateSonar(const CDoCommandInfo& Info,
CDoCommandResultInfo& ResultInfo)
{
}
is there any way to do this or am i asking too much?