Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members

PisaStackv1.h

Go to the documentation of this file.
00001 #ifndef __PISASTACKV1_H__
00002 #define __PISASTACKV1_H__
00003 
00004 #include "PisaStack.h"
00005 #include "PisaVMCStackv1.h"
00006 
00010 class PisaStackv1 : public PisaStack
00011 {
00012  public:
00013   PisaStackv1(size_t initialsize=1000);
00014   virtual ~PisaStackv1();
00015 
00016   PisaVMCStackv1* stack();
00017 
00018   void Reset();
00019 
00020  private:
00021 
00022   PisaVMCStackv1* fStack;
00023 
00024   ClassDef(PisaStackv1,1)
00025 };
00026 
00027 #endif