123456789101112131415161718192021222324252627282930313233 |
- #include "utils.h"
- void display(const vector<u32>& v, ostream& os) {
- for (vector<u32>::const_iterator iter = v.begin(); iter != v.end(); ++iter) {
- os << *iter << "\n";
- }
- os << endl;
- }
- void display_message(char ch)
- {
- cout << ch << endl;
- }
- void display_message(const string& s)
- {
- cout << s << endl;
- }
- void display_message(const string& s, int v1)
- {
- cout << s << ", num v1 = " << v1 << endl;
- }
- void display_message(const string&s, int v1, int v2)
- {
- cout << s << ", num v1 = " << v1 << ", num v2 = " << v2 << endl;
- }
|