YAMLParser
|
#include "pch.h"
#include "yaml-cpp\yaml.h"
#include <iostream>
#include <fstream>
#include <string>
#include <map>
#include "DataHolder.h"
#include "Writer.h"
#include "Parser.h"
Functions | |
void | runParser () |
This is the entry point of the YAMLParser program. This file contains a simple command line UI that allows the user to choose between the parser and the converter part of the program. More... | |
void | runConverter () |
This function contains the logic for specifying the run parameters of the converter program. After the user has specified the parameters, it initializes the necessary classes to run the converter and runs the writeToYAMLFile function which writes the converter output to file. More... | |
int | main () |
This is the entry point of the program. It comprises a simple command line UI allowing the user to specify which part of the program to run. After getting user input, this function calls either runParser() or runConverter(), depending on the input given. More... | |
int main | ( | ) |
This is the entry point of the program. It comprises a simple command line UI allowing the user to specify which part of the program to run. After getting user input, this function calls either runParser() or runConverter(), depending on the input given.
void runConverter | ( | ) |
This function contains the logic for specifying the run parameters of the converter program. After the user has specified the parameters, it initializes the necessary classes to run the converter and runs the writeToYAMLFile function which writes the converter output to file.
void runParser | ( | ) |
This is the entry point of the YAMLParser program. This file contains a simple command line UI that allows the user to choose between the parser and the converter part of the program.
This function contains the logic for specifying the run parameters of the parser program. After the user has specified the parameters, it initializes an instance of the Parser class and runs it.