mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-12 06:30:09 -06:00
Add documentation to Ephemeris classes
Remove unused "Reference" specification from mod files Add osirisrex files to gitgnore Make Ephemeris values into properties
This commit is contained in:
@@ -51,6 +51,22 @@ namespace std {
|
||||
std::string to_string(std::string value) {
|
||||
return value;
|
||||
}
|
||||
|
||||
std::string to_string(openspace::documentation::TestResult::Offense::Reason reason) {
|
||||
switch (reason) {
|
||||
case openspace::documentation::TestResult::Offense::Reason::ExtraKey:
|
||||
return "Extra key";
|
||||
case openspace::documentation::TestResult::Offense::Reason::MissingKey:
|
||||
return "Missing key";
|
||||
case openspace::documentation::TestResult::Offense::Reason::UnknownIdentifier:
|
||||
return "Unknown identifier";
|
||||
case openspace::documentation::TestResult::Offense::Reason::Verification:
|
||||
return "Verification failed";
|
||||
case openspace::documentation::TestResult::Offense::Reason::WrongType:
|
||||
return "Wrong type";
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace std
|
||||
|
||||
namespace openspace {
|
||||
|
||||
Reference in New Issue
Block a user