Feature #2366 2006-07-12 01:42

msk4web

Class completion code

Class completion code A class completion code is a plugin designed to complete your class that you create in a header ("header.h") file in the source code file (.cpp). It generate header.cpp and implement the lcode. It will help to save a lot of time For example lets: header.h ========== #ifndef HEADER_H #define HEADER_H

class Header{ public: void function1(); void function2(); void function3(); private: }; #endif

the plugin generate the header.cpp file and the class implementation:

#include "header.h" void Header::function1(){ } void Header::function2(){ } void Header::function3(){ }

Category
Editing
Status
Open
Close date
 
Assigned to
 
sethjackson 2006-07-13 13:08

Probably the best thing to do would be to extend the class wizard plugin to support this. :) For now all the class wizard does is to output the constructor, and destructor......