school/cs142/lab09/io.h
2016-04-06 20:45:34 -07:00

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