school/cs142/lab09/io.h

12 lines
173 B
C++

#ifndef __IO_H__
#define __IO_H__
#include <vector>
#include <string>
using namespace std;
#include "restaurant.h"
vector<restaurant> parse_file(string filename);
#endif