13 lines
187 B
C++
13 lines
187 B
C++
#ifndef DEF_INPUT_H
|
|
#define DEF_INPUT_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
using namespace std;
|
|
|
|
/*
|
|
Retrieves user input
|
|
*/
|
|
vector<string> get_input(vector<string> history);
|
|
|
|
#endif |