12345678910111213141516171819202122232425 |
- /*
- * This file is part of the FreeStreamer project,
- * (C)Copyright 2011-2018 Matias Muhonen <mmu@iki.fi> 穆马帝
- * See the file ''LICENSE'' for using the code.
- *
- * https://github.com/muhku/FreeStreamer
- */
- #import "FSPlaylistItem.h"
- @implementation FSPlaylistItem
- - (BOOL)isEqual:(id)anObject
- {
- FSPlaylistItem *otherObject = anObject;
-
- if ([otherObject.title isEqual:self.title] &&
- [otherObject.url isEqual:self.url]) {
- return YES;
- }
-
- return NO;
- }
- @end
|