vote up 1 vote down star

Hi SO-followers,

does sombebody know a C++ library for accessing different operating system APIs? I'm thinking about a wrapper to access OS specific functions.

Something like:

osAPI.MessageBox(); // calls MessageBox() in Win32, equivalent in Mac OS Linux etc...

Since I think it's hard to realize this for different OSes for now it would be also ok to have a nice C++ wrapper class for WinAPI.

flag

38% accept rate
The functions you describe are not the OS layer (which handles the Device drivers etc). These are the windowing (or display) Layer, which is a layer above the Core OS. – Martin York Jul 20 at 18:23
I only chose MessageBox because it came in my mind first. In general, I don't think (only)about GUI functions, I think about typical OS API functions like process management, network stuff etc. (non-GUI-stuff in first line) – Inno Jul 20 at 19:12

6 Answers

vote up 8 vote down

I think you're looking for Trolltech's Qt C++ framework.

It's a cross platform C++ library for GUI and just about everything else cross platform.

And as of the latest version it is free to use for commercial use.

link|flag
Does QT also handle non-GUI OS API stuff like getting a list of running processes, for example? – Inno Jul 20 at 16:44
Apparently getting the process list is not covered by QT. ( lists.trolltech.com/qt-interest/2006-10/… ) Maybe they've added a solution in a newer release? I can't find a way to get it in wxWidgets either. – Kieveli Jul 20 at 17:19
You could always fall back on #ifdef _WIN32 when needed – Brian R. Bondy Jul 20 at 18:49
vote up 3 vote down

wxWidgets comes highly recommended by a few friends who've used it.

link|flag
vote up 1 vote down

MFC sort of does this on Windows but is not the easiest to use. For a cross platform C++ library take a look at QT. It's best known as a GUI toolkit, but it contains portable APIs to support many system services such as threading, database connectivity and I/O.

link|flag
vote up 0 vote down

Yet another cross-platform C++ library is Mozilla's XPCOM. It's the cross-platform library used by Firefox and a number of other projects.

link|flag
vote up 0 vote down

Nokia's QT would be your best bet if you need a wide range of cross platform functionality. The downside though is that you need to learn its Signal/Slot mechanism, you need to use it's own qmake tool, and it is not too friendly with the STL(you need to learn to use all of QT's containers).

If you are looking for something simpler for GUI development, then wxWidgets would be a much better choice.

link|flag
it works fine with STL. all of the Qt containers have STL style iterators available. In addition, every Qt container has to/from methods for converting to/from STL containers. – Evan Teran Jul 20 at 20:17
vote up 0 vote down

Boost offers libraries for networking (Boost.Asio), threads (Boost.Thread), time, dates, file system traversal, shared memory, memory mapped files, etc.

ACE also has abstractions for networking, threads, time, file system stuff, shared memory, etc.

AFAIK, neither has GUI abstractions or DB abstractions either.

Others have mentioned Qt, wxWidgets and so forth.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.