Files
Sourcetrail/src/lib_gui/utility/utilityPathDetection.h
T
mlangkabel dfc6d88432 build: search headers in all source directories
* removed paths in include directives
* changed cmake to provide necessary header search paths
* changed name of version.h to productVersion.h due to name conflict
2018-09-18 19:00:18 +02:00

20 lines
586 B
C++

#ifndef UTILITY_PATH_DETECTION_H
#define UTILITY_PATH_DETECTION_H
#include "CombinedPathDetector.h"
namespace utility
{
std::shared_ptr<CombinedPathDetector> getJavaRuntimePathDetector();
std::shared_ptr<CombinedPathDetector> getJreSystemLibraryPathsDetector();
std::shared_ptr<CombinedPathDetector> getMavenExecutablePathDetector();
std::shared_ptr<CombinedPathDetector> getCxxVsHeaderPathDetector();
std::shared_ptr<CombinedPathDetector> getCxxHeaderPathDetector();
std::shared_ptr<CombinedPathDetector> getCxxFrameworkPathDetector();
}
#endif // UTILITY_PATH_DETECTION_H