#ifndef OPTIMISATIONTOOLS_H #define OPTIMISATIONTOOLS_H #include namespace OptimisationTools { template bool dijkstraAlgorithm(const QList elements, int startIndex, int endIndex, QList &elementPath, double(*distance)(const T &t1, const T &t2)); } #endif // OPTIMISATIONTOOLS_H