Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. bool Album::operator==(Album &album) {
  2.     return this->titel == album.titel;
  3. }
  4.  
  5. bool Album::operator<(Album &album) {
  6.     return this->titel < album.titel;
  7. }
  8.  
  9. bool Album::operator<=(Album &album) {
  10.     return this->titel <= album.titel;
  11. }
  12.  
  13. bool Album::operator>(Album &album) {
  14.     return this->titel > album.titel;
  15. }
  16.  
  17. bool Album::operator>=(Album &album) {
  18.     return this->titel >= album.titel;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement