X-Git-Url: https://ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Fparser%2Fparser.h;h=5ad6030d2050bd1c633c31214329e7328ca05cd4;hb=1b8bcb068171ce9d5c8202ae3c76647b65c9a06d;hp=ac57a7986f0fd4990b04ccb6f637415a4e8f1973;hpb=286b0d93528e35957a50c51343e0b4a9bc623bce;p=ginac.git diff --git a/ginac/parser/parser.h b/ginac/parser/parser.h index ac57a798..5ad6030d 100644 --- a/ginac/parser/parser.h +++ b/ginac/parser/parser.h @@ -3,7 +3,7 @@ * Interface to the parser. */ /* - * GiNaC Copyright (C) 1999-2011 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2015 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -67,6 +67,9 @@ class parser /// paren_expr: '(' expression ')' ex parse_paren_expr(); + /// lst_expr: '{' expression { ',' expression } '}' + ex parse_lst_expr(); + /// number_expr: number ex parse_number_expr();