mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
21 lines
448 B
Objective-C
21 lines
448 B
Objective-C
//
|
|
// 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>
|
|
#import "CollectionView.h"
|
|
|
|
@interface CoverViewController : UICollectionViewController
|
|
|
|
@property SqliteDatabase* database;
|
|
@property CollectionView* coverView;
|
|
|
|
-(IBAction)onExit: (id)handler;
|
|
|
|
@end
|