14 lines
301 B
C++
Executable file
14 lines
301 B
C++
Executable file
#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);
|