#pragma once #include #include #include namespace OptimisationTools { template bool dijkstraAlgorithm(const QList &elements, int startIndex, int endIndex, QList &elementPath, std::function distance); }