2025-12-06 16:38:09 -06:00
|
|
|
#ifndef READ_INPUT_H
|
|
|
|
|
|
|
|
|
|
#define READ_INPUT_H
|
|
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <vector>
|
|
|
|
|
#include <string>
|
2025-12-06 21:56:43 -06:00
|
|
|
#include <tuple>
|
2025-12-06 16:38:09 -06:00
|
|
|
#include "produce_database.h"
|
|
|
|
|
|
2025-12-06 21:56:43 -06:00
|
|
|
std::tuple<std::vector<std::string>, std::vector<std::string>> read_input_from_file(std::string filepath);
|
2025-12-06 16:38:09 -06:00
|
|
|
|
|
|
|
|
#endif
|