T O P I C R E V I E W |
Luke Nuttall |
Posted - Aug 24 2006 : 10:06:08 PM There is a minor issue with the create implementation tool. Using create implementation does not respect the spacing in the method declaration, creating trouble for those following a strict coding standard.
e.g. class CodeMonkey { ... bool performTask(const TaskMaster& aTaskMaster); ... };
becomes
bool CodeMonkey::performTask( const TaskMaster& aTaskMaster ) {
}
instead of : bool CodeMonkey::performTask(const TaskMaster& aTaskMaster) {
}
|
1 L A T E S T R E P L I E S (Newest First) |
rhummer |
Posted - Aug 24 2006 : 10:22:22 PM you can modify how create implementation formats the code via the auto text entry titled "Refactor Create Implementation" |
|
|