blob: 4039c534ad62e1c38b1974006cd90855c65e851a [file] [log] [blame]
Emeric Vigier2f625822012-08-06 11:09:52 -04001/**
2 @brief DBus-C++ Library Public API Calls
3 */
4
5/**
6
7 @mainpage DBus-C++
8
9 @section intro Introduction
10
11 DBus-c++ attempts to provide a C++ API for D-BUS. The library has a glib and an Ecore mainloop integration. It also offers an optional own main loop.
12
13 @section install How is it installed for Linux?
14 @verbatim
15 ./configure \
16 make
17 sudo make install
18 @endverbatim
19
20 @section compiling How to compile using DBus-C++?
21 pkgconfig (.pc) files are installed for every DBus-C++ mainloop integration.
22 Thus, to compile using any of them, you can use something like the following:
23
24 @verbatim
25 g++ *.cpp $(pkg-config dbus-c++-1 --cflags --libs)
26 @endverbatim
27
28 @author Andreas Volz <andreas.volz@tux-style.com>
29 @author Paolo Durante <shackan@gmail.com>
30
31 Please contact join the mailing list to get in
32 contact with the developers and maintainers.
33 */
34