Optimize the Fold() operator, slightly increasing compile-time performance.
1 file changed
tree: 28f957a187263147b5518bfe933a349268bb101f
  1. doc/
  2. examples/
  3. extras/
  4. include/
  5. src/
  6. tests/
  7. .gitignore
  8. .kdev_include_paths
  9. .travis.yml
  10. CMakeLists.txt
  11. COPYING
  12. filter_gcc_error.sh
  13. find_unused_types.sh
  14. fruit.kdev4
  15. postsubmit.sh
  16. README.md
  17. run_benchs.sh
  18. test_coverage.sh
README.md

Fruit is a dependency injection framework for C++, loosely inspired by the Guice framework for Java. It uses C++ metaprogramming together with some new C++11 features to detect most injection problems at compile-time. It allows to split the implementation code in "components" (aka modules) that can be assembled to form other components. From a component with no requirements it's then possible to create an injector, that provides an instance of the interfaces exposed by the component.

See the Fruit website for more information, including installation instructions, tutorials and reference documentation.