This commit is contained in:
2019-08-07 16:11:42 +02:00
parent e246a33269
commit eec7b22582
2 changed files with 13 additions and 12 deletions

View File

@ -193,21 +193,21 @@ class Detector {
* Get Detector type as an enum
* @returns detector type
*/
detectorType Detector::getDetectorTypeAsEnum() const;
defs::detectorType getDetectorTypeAsEnum() const;
/**
* Get Detector type as an enum
* @param pos detector position
* @returns detector type
*/
Result<detectorType> getDetectorTypeAsEnum(Positions pos = {}) const;
Result<defs::detectorType> getDetectorTypeAsEnum(Positions pos = {}) const;
/**
* Returns detector type as a string
* @param pos detector position
* @returns detector type as string
*/
Result<std::string> getDetectorTypeAsString(Positions pos = {});
Result<std::string> getDetectorTypeAsString(Positions pos = {}) const;
};
} // namespace sls