12 lines
173 B
C
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
|