43 [[nodiscard]] std::string
type()
const override;
61 bool initialize()
override;
64 void deinitialize()
override;
67 bool resetNode()
override;
71 [[nodiscard]]
FileType determineFileType()
override;
74 void readHeader()
override;
80 char _delimiter =
',';
89 bool _hasHeaderLine =
true;
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.
CsvFile & operator=(CsvFile &&)=delete
Move assignment operator.
CsvFile(const CsvFile &)=delete
Copy constructor.
static std::string typeStatic()
String representation of the Class Type.
CsvFile()
Default constructor.
CsvFile(CsvFile &&)=delete
Move constructor.
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.
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