43 [[nodiscard]] std::string
type()
const override;
Abstract File Reader class.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
CSV Data container.
Definition CsvData.hpp:24
CSV File reader.
Definition CsvFile.hpp:24
void guiConfig() override
ImGui config window which is shown on double click.
FileType determineFileType() override
Determines the type of the file.
CsvFile & operator=(CsvFile &&)=delete
Move assignment operator.
CsvFile(const CsvFile &)=delete
Copy constructor.
bool initialize() override
Initialize the node.
static std::string typeStatic()
String representation of the Class Type.
int _skipLines
Amount of lines to skip at the start.
Definition CsvFile.hpp:86
void deinitialize() override
Deinitialize the node.
CsvFile()
Default constructor.
CsvFile(CsvFile &&)=delete
Move constructor.
char _comment
Comment character.
Definition CsvFile.hpp:83
void readHeader() override
Read the Header of the file.
CsvFile & operator=(const CsvFile &)=delete
Copy assignment operator.
std::string type() const override
String representation of the Class Type.
static std::string category()
String representation of the Class Category.
void restore(const json &j) override
Restores the node from a json object.
~CsvFile() override
Destructor.
char _delimiter
Delimiter character.
Definition CsvFile.hpp:80
CsvData _data
Data container.
Definition CsvFile.hpp:77
bool _hasHeaderLine
Flag whether there is a header line at the start.
Definition CsvFile.hpp:89
bool resetNode() override
Resets the node. It is guaranteed that the node is initialized when this is called.
json save() const override
Saves the node into a json object.
Abstract File Reader class.
Definition FileReader.hpp:31
FileType
File Type Enumeration.
Definition FileReader.hpp:35
Abstract parent class for all nodes.
Definition Node.hpp:86