17 enum class Filetype :
char { ASCII, YAAAR, VOTABLE, GUESS };
21 void setFilename(std::string_view filename);
23 std::string_view getFilename()
const;
25 std::tuple<std::vector<double>, std::vector<double>, std::vector<double>>
26 readFileFromDisk(Filetype filetype = Filetype::GUESS);
28 std::tuple<std::vector<double>, std::vector<double>, std::vector<double>>
29 readASCIIFileFromDisk();
31 std::tuple<std::vector<double>, std::vector<double>, std::vector<double>>
32 readYAAARFileFromDisk();
34 std::tuple<std::vector<double>, std::vector<double>, std::vector<double>>
35 readVOTableFileFromDisk();
37 std::tuple<std::vector<double>, std::vector<double>, std::vector<double>>
38 readGuessedFileFromDisk();
41 std::string _filename;