Unity Action API
Using the C++ API

Install the development headers:

sudo apt-get install libunity-action-qt1-dev

Use pkg-config to get the necessary compilation flags:

$ g++ myapp.cpp `pkg-config --cflags --libs unity-action-qt-1` -o myapp

The headers can then be included as:

// includes the unity::action::Action class
#include <unity/action/Action>