Library Mobile API Reference for iPad  MicroStrategy 2019
Stack.h
Go to the documentation of this file.
1 //
2 // Stack.h
3 // MSTRMobile
4 //
5 // Created by Kevin Maurer on 5/12/09.
6 // Copyright 2009 MicroStrategy. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 
12 @interface Stack : NSObject {
13  NSMutableArray* array;
14 }
15 
16 -(void) push:(id)object;
17 -(id) pop;
18 -(id) peek;
19 -(Stack*) initWithCapacity:(int)capacity;
20 -(NSInteger) count;
21 
22 - (BOOL) isEmpty;
23 @end
NSMutableArray * array
Definition: Stack.h:13
Definition: Stack.h:12