mirror of
https://github.com/oonyeje/Get-Hip.git
synced 2025-12-25 11:47:41 +00:00
18 lines
317 B
Objective-C
Executable File
18 lines
317 B
Objective-C
Executable File
//
|
|
// NSMutableArray+QueueMethods.h
|
|
// TDAudioPlayer
|
|
//
|
|
// Created by Tony DiPasquale on 11/12/13.
|
|
// Copyright (c) 2013 Tony DiPasquale. The MIT License (MIT).
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSMutableArray (QueueMethods)
|
|
|
|
- (void)pushObject:(id)object;
|
|
- (id)popObject;
|
|
- (id)topObject;
|
|
|
|
@end
|