News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

Insert all class method without implementation question

Started by Loaden, February 26, 2010, 01:29:48 PM

Previous topic - Next topic

Loaden

like this declaration:
private:
    void Start(const wxString& file);

When insert the implementation, it's became to:
/** @brief Start
  *
  * @todo: document this function
  */
void Frame::Start(constwxString&file)
{

}



"constwxString&file" : It's seems lost the blank type.

Jenna

No problems here (neither on debian 64-bit nor on winxp sp3).

blueshake

Keep low and hear the sadness of little dog.
I fall in love with a girl,but I don't dare to tell her.What should I do?

Loaden


MortenMacFly

Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]

ollydbg

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

MortenMacFly

Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]