Re: In C++ programming, what librarys or frameworks are you using?
CppNewer wrote:
Or most peopel use the OS' API directly? or everyone made own series
of library such as Socket, Thread API.
I'm currently using:
- wxWidgets (big difference to what I was used to, with the sizer
concept, but worth a look) with wxFormBuilder
- boost::thread
- winsock2 (supposed to be compatible to sockets-library under linux)
- xerces-c (domxml parsing)
all of this with Eclipse CDT & Cygwin, thinking about "migrating" to
MinGW though, for not needing cygwin1.dll or similar.
Re: In C++ programming, what librarys or frameworks are you using?
On 2008-02-22 06:44, CppNewer wrote:
Or most peopel use the OS' API directly? or everyone made own series
of library such as Socket, Thread API.
Depends on what kind of application I'm writing, I usually try to keep
the number of dependencies small. In the projects I'm currently working
on I use the C++ standard library, whatever I in POSIX, and Qt 3.
Re: In C++ programming, what librarys or frameworks are you using?
CppNewer wrote:
Or most peopel use the OS' API directly? or everyone made own series
of library such as Socket, Thread API.
POSIX and Qt4.
You know what I would love? A great big honkin' printed tutorial on the
parts of Boost that could replace direct calls to POSIX. I would
particularly like portable access to the local file-system and to the
network, and portable concurrency. I'm aware that Boost provides these
libraries, but what I really want is an Addison-Wesley Professional
hardcover showing me how to use them. I guess that book won't exist
until TR2 makes it into C++1x.
Re: In C++ programming, what librarys or frameworks are you using?
On Feb 23, 8:25 am, Jeff Schwab <j...@schwabcen ter.comwrote:
>
POSIX and Qt4.
>
You know what I would love? A great big honkin' printed tutorial on the
parts of Boost that could replace direct calls to POSIX. I would
particularly like portable access to the local file-system and to the
network, and portable concurrency. I'm aware that Boost provides these
libraries, but what I really want is an Addison-Wesley Professional
hardcover showing me how to use them. I guess that book won't exist
until TR2 makes it into C++1x.
I doubt it will take that long. I'm interested in hearing about
C++ related books that are in the works, but haven't been published
yet.
Comment