Say I'm manually representing a C++ class in EA, I right click on the class and choose "Operations..." to add the functions. There are for example member functions with the following definition:
void SetFilePath(const wchar_t* ip_file_path, const wchar_t* ip_extension)
bool IsFilenameDefined() const
For the first function, in EA, the only way to get it in EA is to type the name, the return type, and each of the parameter, separatly, pressing a lot of little "new" and "save" buttons along the way.
It would be really cool, if there was a field "enter definition", where I would in one go, copypaste "void SetFilePath(const wchar_t* ip_file_path, const wchar_t* ip_extension)" in one editbox, and that EA will then parse it and fill in all the fields like name, all the parameters, the fact that is is or isn't a const member function, and so on itself.
That could greatly enhance the productivity, when entering classes manually!
Same for attributes to type for example "int m_name" in one go instead of typing the "int" and the "m_name" in separate fields.
The reason why it could increase the productivity is that typing 1 function definition is easier than clicking lots of buttons and typing in separate fields, and that when the code already exists, you can simply copypaste it.
Please consider it

Thanks.