15 lines
301 B
C
15 lines
301 B
C
|
#include <vector>
|
|||
|
#include "struct_type_project_1.h"
|
|||
|
|
|||
|
using namespace std;
|
|||
|
|
|||
|
void add(vector<Product>&, wstring, wstring, wstring, wstring);
|
|||
|
|
|||
|
void remove(vector<Product>&, wstring);
|
|||
|
|
|||
|
bool read(vector<Product>&, string);
|
|||
|
|
|||
|
bool save(vector<Product>&, string);
|
|||
|
|
|||
|
void search(vector<Product>&, wstring);
|