News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

STL library find helper?

Started by Squeller, June 05, 2007, 04:18:52 PM

Previous topic - Next topic

Squeller

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...

raph

#1
Grab yourself an helpfile and use the help plugin (e.g. see here).
Codecompletion may also be your friend.

Regards
raph

Edit:
Tip: STRG+rightclick

MortenMacFly

Quote from: Squeller on June 05, 2007, 04:18:52 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.
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]

stahta01

#3
Quote from: 20-40 on June 05, 2007, 08:34:42 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
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

Squeller

Thanks people- I'm sorting out if the cpp reference help + help plugin may be enough for me.