1 // $Id: gc_parse_pop.h,v 1.6 2011/03/08 19:22:00 bobgian Exp $
2 
3 /*
4   Copyright 2002  Mary Kuhner, Jon Yamato, and Joseph Felsenstein
5 
6   This software is distributed free of charge for non-commercial use
7   and is copyrighted.  Of course, we do not guarantee that the software
8   works, and are not responsible for any damage you may cause or have.
9 */
10 
11 #ifndef GC_PARSE_POP_H
12 #define GC_PARSE_POP_H
13 
14 #include "wx/string.h"
15 
16 class GCParse;
17 
18 class GCParsePop
19 {
20   private:
21     GCParsePop();           // undefined
22 
23     const GCParse *         m_parse;
24     const size_t            m_indexInParse;
25     const wxString          m_name;
26   public:
27     GCParsePop(const GCParse * parse, size_t indexInParse, wxString name);
28     ~GCParsePop();
29 
30     const GCParse & GetParse()          const;
31     size_t          GetIndexInParse()   const;
32     wxString        GetName()           const;
33 };
34 
35 #endif  // GC_PARSE_POP_H
36 
37 //____________________________________________________________________________________
38