![]() |
Home | Libraries | People | FAQ | More |
Starting with version 0.4.10 the plug-in module has been moved to a new library, called Boost.Plugin.
As proposed by Rodrigo Madera (Application RM), this:
struct myapp { bool stop(boost::application::context& context); bool pause(boost::application::context& context); bool resume(boost::application::context& context); };
Become this:
struct myapp { myapp(boost::application::context& context); bool stop(); bool pause(); bool resume(); };
New experimental module auto_handler.hpp This module simplifies the creation of the main 'handlers', like: stop, instace_aready_running, pause (windows only), resume (windows only)
In line with the last Boost.TypeIndex (typeindex::type_index)
Removes Boost.Singularity dependence and add a global context
In line with the last Boost.TypeIndex (typeind::type_index)
New sample that show how user can extend the lib(new_application_mode)
Changes on identification of application modes.
aspect_map now is Thread-Safe.
On POSIX/UNIX now we provide 'selfpipe' for SIGNALS handle like proposed by 'Stanislav Ivochkin' on mailing list discussion.
Boost.Application 0.4 (Aspect Based Design)
Boost.Application 0.3 (Old Interface)
Boost.Application 0.2 (Concept Tests)
Version 0.2.pa Boost.Application_pre_alpha_2
Boost.Application 0.1 (Initial Prototype)