|
Moodle
2.2.1
http://www.collinsharper.com
|
Go to the source code of this file.
Data Structures | |
| class | Parser |
Namespaces | |
| namespace | Spreadsheet_WriteExcel |
Enumerations | |
| enum | ADD |
| enum | SUB |
| enum | EQUAL |
| enum | MUL |
| enum | DIV |
| enum | OPEN |
| enum | CLOSE |
| enum | COMA |
| enum ADD |
Class for parsing Excel formulas
License Information:
Spreadsheet::WriteExcel: A library for generating Excel Spreadsheets Copyright (C) 2002 Xavier Noguer xnoguer@rezebra.com
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ADD token identifier for character "+"
Definition at line 28 of file Parser.php.
| enum CLOSE |
CLOSE token identifier for character ")"
Definition at line 58 of file Parser.php.
| enum COMA |
COMA token identifier for character ","
Definition at line 63 of file Parser.php.
| enum DIV |
DIV token identifier for character "/"
Definition at line 48 of file Parser.php.
| enum EQUAL |
EQUAL token identifier for character "="
Definition at line 38 of file Parser.php.
| enum MUL |
MUL token identifier for character "*"
Definition at line 43 of file Parser.php.
| enum OPEN |
OPEN token identifier for character "("
Definition at line 53 of file Parser.php.
| enum SUB |
SUB token identifier for character "-"
Definition at line 33 of file Parser.php.