Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. cout << "Song title search placeholder" << endl;
  2. string choice1;
  3. cin >> choice1;
  4.  
  5. //call title search function from ProjectHash
  6. //Product object gets returned
  7. //if the product is NULL
  8. cout << "Sorry, we could not find any songs by that name." << endl;
  9.  
  10. //if the product is not null
  11. cout << "We found 1 object by that name: " << endl;
  12. //call a display function for the product object
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement