Clean build

This commit is contained in:
Gregory John Casamento 2019-11-22 02:16:05 -05:00
parent bd8d45d9ff
commit 10a81f89f3
6 changed files with 29 additions and 7 deletions

View file

@ -32,33 +32,42 @@
- (instancetype) initWithData: (NSData *)imageData
{
self = [super init];
if(self != nil)
{
ASSIGNCOPY(_imageData, imageData);
}
return self;
}
- (NSRect) bounds
{
return _bounds;
}
- (void) setBounds: (NSRect)bounds
{
_bounds = bounds;
}
- (NSInteger) currentPage
{
return 0;
return _currentPage;
}
- (void) setCurrentPage: (NSInteger)currentPage
{
_currentPage = currentPage;
}
- (NSInteger) pageCount
{
return 0;
return _pageCount;
}
- (NSData *) PDFRepresentation
{
return nil;
return _pdfRepresentation;
}
@end