mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-10 13:41:45 -06:00
Feature/cleanup (#1608)
* Revert screenlog back to showing Info and above messages * Various code cleanup
This commit is contained in:
@@ -27,26 +27,23 @@
|
||||
#include <openspace/engine/globals.h>
|
||||
#include <openspace/util/spicemanager.h>
|
||||
#include <ghoul/logging/logmanager.h>
|
||||
#include <cstring>
|
||||
|
||||
namespace openspace {
|
||||
|
||||
std::map<std::string, ImageSubset>& SequenceParser::getSubsetMap() {
|
||||
std::map<std::string, ImageSubset>& SequenceParser::subsetMap() {
|
||||
return _subsetMap;
|
||||
}
|
||||
|
||||
const std::vector<std::pair<std::string, TimeRange>>&
|
||||
SequenceParser::getInstrumentTimes() const
|
||||
SequenceParser::instrumentTimes() const
|
||||
{
|
||||
return _instrumentTimes;
|
||||
}
|
||||
const std::vector<std::pair<double, std::string>>&
|
||||
SequenceParser::getTargetTimes() const
|
||||
{
|
||||
const std::vector<std::pair<double, std::string>>& SequenceParser::targetTimes() const {
|
||||
return _targetTimes;
|
||||
}
|
||||
|
||||
const std::vector<double>& SequenceParser::getCaptureProgression() const {
|
||||
const std::vector<double>& SequenceParser::captureProgression() const {
|
||||
return _captureProgression;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user