* 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
20 lines
586 B
C++
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
|
|
|