Author Topic: STL library find helper?  (Read 4766 times)

Squeller

  • Guest
STL library find helper?
« 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...

Offline raph

  • Almost regular
  • **
  • Posts: 242
Re: STL library find helper?
« Reply #1 on: June 05, 2007, 05:22:23 pm »
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
« Last Edit: June 05, 2007, 05:24:09 pm by raph »

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: STL library find helper?
« Reply #2 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.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7588
    • My Best Post
Re: STL library find helper?
« Reply #3 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
« Last Edit: June 05, 2007, 10:50:51 pm by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Squeller

  • Guest
Re: STL library find helper?
« Reply #4 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.