#ifndef DELEGATES_H_ #define DELEGATES_H_ #include #include using runnable = std::function; using stringconsumer = std::function; using wstringsupplier = std::function; using wstringconsumer = std::function; using doublesupplier = std::function; using doubleconsumer = std::function; using boolsupplier = std::function; using boolconsumer = std::function; using wstringchecker = std::function; #endif // DELEGATES_H_