-
Notifications
You must be signed in to change notification settings - Fork 0
/
tregu.cpp
36 lines (31 loc) · 854 Bytes
/
tregu.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>
#include <vector>
#include <string>
#include <set>
#include <algorithm>
#include "practice_functions.h"
#include "Sales_data.h"
#include "Message.h"
using std::cout; using std::cin; using std::endl;
using std::vector;
using std::string;
extern int Sales_data_report(vector <Sales_data> v);
bool compare_isbn(const Sales_data &first, const Sales_data &second);
int main() {
}
/* int your_mom(int, int); 6-28-13
* vector <decltype(your_mom) (*)> momvec;
* momvec.push_back(greatest_commmon_factor);
* auto p = momvec.begin();
* cout << (*p) (15, 18);
*/
/*
*
* vector<Sales_data> book_holder;
* book_holder.push_back(Sales_data("000300"));
* book_holder.push_back(Sales_data("4459"));
* book_holder.push_back(Sales_data(":DDD"));
* book_holder.push_back(Sales_data("meowwww"));
*
* Sales_data_report(book_holder);
*/