1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-10-15 02:19:10 +00:00

Introduces a multimachine to handle multi-target static analyser outputs.

Non-functional as of yet.
This commit is contained in:
Thomas Harte
2018-01-28 22:22:21 -05:00
parent e025674eb2
commit d493ea4bca
11 changed files with 154 additions and 21 deletions

View File

@@ -9,7 +9,8 @@
#ifndef ConfidenceSource_hpp
#define ConfidenceSource_hpp
namespace DynamicAnalyser {
namespace Analyser {
namespace Dynamic {
/*!
Provides an abstract interface through which objects can declare the probability
@@ -21,6 +22,7 @@ struct ConfidenceSource {
virtual float get_confidence() = 0;
};
}
}
#endif /* ConfidenceSource_hpp */