Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 590 Bytes

Readme.md

File metadata and controls

18 lines (14 loc) · 590 Bytes

CPP_TOOLS

LibLoader

A little plugin loader in c++ for dynamic library (cross-plateform Linux/Windows)

ThreadPool

A c++11 thread pool pattern: class ThreadPool:

  • ThreadPool(size)
  • AddTask(function / lambda, scopelock, args ...) -> std::future |-> function : function to compute by a thread. |-> scopelock : lock (or not) the function scope and variable used. |-> args ... : variatic parameter for the function.

Filesytem

A c++ header which contains a mini filesystem for Linux/Windows compatibility.

Modified from this project: https://github.com/progschj/ThreadPool.git