Public Methods | |
| void * | operator new (size_t size) | 
| void | operator delete (void *ptr) | 
| RegExprStackItem (VRegExpr *myregexpr, RegExprStackItem *myprev) | |
| RegExprStackItem (unsigned long mytype, RegExprStackItem *myprev) | |
Public Attributes | |
| RegExprStackItem * | prev | 
| unsigned long | type | 
| VRegExpr * | regexpr | 
      
  | 
  ||||||||||||
| 
 
 Definition at line 267 of file VRegExpr.cpp. 00268    {
00269       prev=myprev;
00270       type=STACKITEM_REGEXPR;
00271       regexpr=myregexpr;
00272    }
 | 
  
      
  | 
  ||||||||||||
| 
 
 Definition at line 274 of file VRegExpr.cpp. 00275    {
00276       prev=myprev;
00277       type=mytype;
00278       regexpr=NULL;
00279    }
 | 
  
      
  | 
  
| 
 
 Definition at line 265 of file VRegExpr.cpp. 00265 {}
 | 
  
      
  | 
  
| 
 
 Definition at line 264 of file VRegExpr.cpp. 00264 {  return vregexprmem->GetByteBlock(size);  }
 | 
  
      
  | 
  
| 
 
 Definition at line 260 of file VRegExpr.cpp. Referenced by HandleBinOp(), HandleCloseParenc(), VRegExpr::ParseVRegExpr(), and ReduceAll(). 
  | 
  
      
  | 
  
| 
 
 Definition at line 262 of file VRegExpr.cpp. Referenced by HandleBinOp(), VRegExpr::ParseVRegExpr(), and ReduceAll(). 
  | 
  
      
  | 
  
| 
 
 Definition at line 261 of file VRegExpr.cpp. Referenced by HandleBinOp(), HandleCloseParenc(), HandleOpenParenc(), HandleUnaryOp(), and ReduceAll(). 
  | 
  
1.2.11.1 written by Dimitri van Heesch,
 © 1997-2001