absyntax/absyntax.hh
changeset 438 744b125d911e
parent 417 d48f53715f77
child 459 01f6664bf8c5
equal deleted inserted replaced
437:0e09a8840c92 438:744b125d911e
   127     virtual void add_element(symbol_c *elem);
   127     virtual void add_element(symbol_c *elem);
   128      /* insert a new element before position pos. */
   128      /* insert a new element before position pos. */
   129      /* To insert into the begining of list, call with pos=0  */
   129      /* To insert into the begining of list, call with pos=0  */
   130      /* To insert into the end of list, call with pos=list->n */
   130      /* To insert into the end of list, call with pos=list->n */
   131     virtual void insert_element(symbol_c *elem, int pos = 0);
   131     virtual void insert_element(symbol_c *elem, int pos = 0);
       
   132      /* remove element at position pos. */
       
   133     virtual void remove_element(int pos = 0);
   132 };
   134 };
   133 
   135 
   134 
   136 
   135 
   137 
   136 
   138