Skip to content

AttentionZ/Boost.Application

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Boost.Application (Aspect Based)

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

Todo

Update Docs.

###Installation Notes

Boost.Application uses a libraries that is not part of boost yet, you need install this library manually:

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).

Use

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’.

Questions, suggestions or bugs, please send an email to:

[email protected] (Renato Tegon Forti)

About

Boost Application Library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 99.7%
  • Other 0.3%