4 typedef std::multiset<int> intset;
5 typedef std::multiset<std::string> stringset;
9 int thefoo_rw(int arg = 1)
19 void by_ref_and_ptr(intset &ref, intset *ptr)
21 // Stop here to check by ref and ptr
28 thefoo_rw(1); // Set break point at this line.
36 thefoo_rw(1); // Set break point at this line.
39 thefoo_rw(1); // Set break point at this line.
41 by_ref_and_ptr(ii, &ii);
44 thefoo_rw(1); // Set break point at this line.
47 thefoo_rw(1); // Set break point at this line.
50 ss.insert("a very long string is right here");
51 thefoo_rw(1); // Set break point at this line.
55 thefoo_rw(1); // Set break point at this line.
58 thefoo_rw(1); // Set break point at this line.