2015-08-15 03:08:32 -04:00
|
|
|
//
|
|
|
|
// CoverViewController.h
|
|
|
|
// Play
|
|
|
|
//
|
|
|
|
// Created by Lounge Katt on 8/15/15.
|
|
|
|
// Copyright (c) 2015 Jean-Philip Desjardins. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "SqliteDatabase.h"
|
|
|
|
#import <SDWebImage/UIImageView+WebCache.h>
|
2015-08-22 09:27:08 -04:00
|
|
|
#import "CollectionView.h"
|
2015-08-15 03:08:32 -04:00
|
|
|
|
|
|
|
@interface CoverViewController : UICollectionViewController
|
|
|
|
|
|
|
|
@property SqliteDatabase* database;
|
2018-04-30 21:01:23 +01:00
|
|
|
@property CollectionView* coverView;
|
2015-08-15 03:08:32 -04:00
|
|
|
|
2018-10-26 08:14:14 -04:00
|
|
|
-(IBAction)onExit: (id)handler;
|
|
|
|
|
2015-08-15 03:08:32 -04:00
|
|
|
@end
|