The 'callback' function is a part of the 'Subscriber' class.
Once the 'event' (or asynchronous message) is received, the 'Subscriber' object
forwards the data to the 'Handler' object.
With this approach, the 'event' processing algorithm can be defined
in a Python subclass by the user.
Each 'subscriber' class has a function that matches the C function pointer.
But this function is a static method, shared with all instances of the class.
In order to dispatch the message/data to the right instance,
we maintain a dictionary of instantiated objects.
Therfore, we have added the following internal services :
* bool registerNewSubscriber(EventSubscriber*, id);
* EventSubscriber* findSubscriber(id);
* void unregisterSubscriber(id);
* Python wrapper: add an 'include' directive to have access to the 'mms_type'
* Python wrapper: add an 'include' directive to include the ConfigFileParser API
1. Allow specifying Python interpreter version with BUILD_PYTHON_VERSION
2. Fix Python modules install path generation (would produce spurious
line feed which would cause destination directory to be
/usr/lib/python*/dist-packages\n -- note the final \n!