File: using-cpp.dox

package info (click to toggle)
lomiri-action-api 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,104 kB
  • sloc: cpp: 3,784; ansic: 1,052; xml: 64; makefile: 54
file content (23 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*!
\page using-cpp Using the C++ API

Install the development headers:

\code{.txt}
sudo apt-get install liblomiri-action-qt1-dev
\endcode

Use pkg-config to get the necessary compilation flags:

\code{.txt}
$ g++ myapp.cpp `pkg-config --cflags --libs lomiri-action-qt-1` -o myapp
\endcode

The headers can then be included as:

\code{.cpp}
// includes the lomiri::action::Action class
#include <lomiri/action/Action> 
\endcode

*/