BoostPort.txt 790 B

1234567891011121314151617181920
  1. Events:
  2. - Locking currently doesn't work properly. I need to use stack allocation to temporarily allocate std::functions when triggering an event
  3. - Add support for variadic number of parameters. Initially just by using boost preprocessor like in other places.
  4. - Note for events and its function style arguments: "class variadic_extended_signature<R (Args...)>"
  5. Replace boost::any from Any in POCO
  6. Replace boost::uid from UUID in POCO
  7. Temporarily make filesystem use VS filesystem header
  8. --------------
  9. Once ported to VS:
  10. - Remove boost preprocessor macros and use variadic templates
  11. - Remove ::type extensions from vectors
  12. - Port filesystem from VS implementation to custom one
  13. --------------
  14. Other:
  15. - std::function allocates memory yet I'm not using a custom allocator for it.