Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: Squeller on June 05, 2007, 04:18:52 pm

Title: STL library find helper?
Post by: Squeller on June 05, 2007, 04:18:52 pm
Hi,

I'm a newbie in terms of c++ programming and codeblocks. The problem is, I often do not know that a function, which I am searching for, already exists in library XYZ.

Does CodeBlocks support the user in any way? I think what I need is a kind of full text search through, hmmm, library function descriptions?

I hope you understand what I mean.

Thx...
Title: Re: STL library find helper?
Post by: raph on June 05, 2007, 05:22:23 pm
Grab yourself an helpfile and use the help plugin (e.g. see here (http://forums.codeblocks.org/index.php/topic,5186.0.html)).
Codecompletion may also be your friend.

Regards
raph

Edit:
Tip: STRG+rightclick
Title: Re: STL library find helper?
Post by: MortenMacFly on June 05, 2007, 09:15:37 pm
I'm a newbie in terms of c++ programming and codeblocks.
You might want to make yourself familiar with the SymTab plugin, too (part of the contrib plugins). It's purpose is to use the "nm" tool to query object files / libraries for exports of certain functions.
With regards, Morten.
Title: Re: STL library find helper?
Post by: stahta01 on June 05, 2007, 10:38:39 pm
I use old-fashioned way - grep.exe.

I like the new way, I just found AstroGrep today at http://sourceforge.net/projects/astrogrep/

It works only on windows right now, it is trying to use mono under Linux. It is written in C#.

Tim S
Title: Re: STL library find helper?
Post by: Squeller on June 08, 2007, 11:22:36 am
Thanks people- I'm sorting out if the cpp reference help + help plugin may be enough for me.