~urbanape/ubuntuone-ios-music/2.0-resubmission

« back to all changes in this revision

Viewing changes to musicstreaming/models/PlaylistSongIndex.h

  • Committer: Zachery Bir
  • Date: 2011-06-21 18:56:17 UTC
  • mfrom: (193.1.8 2.0-8-prerelease)
  • Revision ID: zachery.bir@canonical.com-20110621185617-zwp4oxx4b2i1uuac
MergedĀ 2.0-9-prerelease

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
//  PlaylistSongIndex.h
 
3
//  iSub
 
4
//
 
5
//  Created by Zachery Bir on 6/17/11.
 
6
//  Copyright 2011 Canonical Ltd.
 
7
//      
 
8
//  This program is free software: you can redistribute it and/or modify it
 
9
//  under the terms of the GNU Affero General Public License version 3,
 
10
//  as published by the Free Software Foundation.
 
11
//      
 
12
//  This program is distributed in the hope that it will be useful, but
 
13
//  WITHOUT ANY WARRANTY; without even the implied warranties of
 
14
//  MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
15
//  PURPOSE.  See the GNU Affero General Public License for more details.
 
16
//
 
17
//  You should have received a copy of the GNU Affero General Public License
 
18
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 
 
20
#import <Foundation/Foundation.h>
 
21
 
 
22
@class Playlist, Song;
 
23
 
 
24
@interface PlaylistSongIndex : NSManagedObject {
 
25
@private
 
26
    
 
27
}
 
28
@property (nonatomic, retain) NSNumber *index;
 
29
 
 
30
@property (nonatomic, retain) Playlist *playlistEntity;
 
31
@property (nonatomic, retain) Song *songEntity;
 
32
@end