#Boost.Application (Aspect Based)
- This release will be identified as : 0.4
- To get 0.3 (older version) refer to: [0.3] (https://sourceforge.net/projects/boostapp/)
In line with new Boost Git Structure
contact: [email protected]
###Acknowledgements
A special thanks to Vicente J. Botet Escriba that helped a lot on all areas of this lib.
Thanks to Benjamin Dieckmann for global_context implementation.
###On-line Documentation (Work in Progress)
[Online Docs] (http://www.dokfile.com/appbeta4/docs/libs/application/doc/html/index.html)
[Wiki] (https://github.com/retf/Boost.Application/wiki)
###Articles
[Creating a New Application Mode] (http://www.codeproject.com/Articles/695937/Creating-a-New-Application-Mode)
[Build a Server Application using Application Library] (http://www.codeproject.com/Articles/756866/Build-a-Server-Application-using-Application-Libra)
###Notes
As proposed by Rodrigo Madera (Application RM), this new version (0.4.9) changes the creation of application, 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();
};
Update Docs.
###Installation Notes
Boost.Application uses a libraries that is not part of boost yet, you need install this library manually:
- [TypeIndex] (https://github.com/boostorg/type_index) --> In line with the last Boost TypeIndex (typeindex::type_index)
Full Reference (http://www.boost.org/community/review_schedule.html)
Building: Detailed instructions can be found [here] (https://svn.boost.org/trac/boost/wiki/TryModBoost).
If you intend to use 'Application' on your application, please send-me your name and project. I am looking for create a list of users of ‘Application’.
[email protected] (Renato Tegon Forti)