Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Revision History

0.4.10

Starting with version 0.4.10 the plug-in module has been moved to a new library, called Boost.Plugin.

Refer to Boost.Plugin

0.4.9

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();
};
0.4.8

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)

0.4.7

In line with the last Boost.TypeIndex (typeindex::type_index)

TypeIndex

0.4.6

Removes Boost.Singularity dependence and add a global context

0.4.5

In line with the last Boost.TypeIndex (typeind::type_index)

0.4.4

New sample that show how user can extend the lib(new_application_mode)

Version 0.4.4.b (Current)

0.4.3

Changes on identification of application modes.

Version 0.4.3.b

0.4.2

aspect_map now is Thread-Safe.

Version 0.4.2.b

0.4.1

On POSIX/UNIX now we provide 'selfpipe' for SIGNALS handle like proposed by 'Stanislav Ivochkin' on mailing list discussion.

Version 0.4.1.b

0.4

Boost.Application 0.4 (Aspect Based Design)

Version 0.4.b

0.3

Boost.Application 0.3 (Old Interface)

Version 0.3.b

0.2

Boost.Application 0.2 (Concept Tests)

Version 0.2.pa Boost.Application_pre_alpha_2

0.1

Boost.Application 0.1 (Initial Prototype)

Version 0.1.pa Boost.Application_pre_alpha_1


PrevUpHomeNext