File indexing completed on 2024-04-28 03:40:38

0001 /*************************************************************************************
0002  *  Copyright (C) 2010 by Aleix Pol <aleixpol@kde.org>                               *
0003  *                                                                                   *
0004  *  This program is free software; you can redistribute it and/or                    *
0005  *  modify it under the terms of the GNU General Public License                      *
0006  *  as published by the Free Software Foundation; either version 2                   *
0007  *  of the License, or (at your option) any later version.                           *
0008  *                                                                                   *
0009  *  This program is distributed in the hope that it will be useful,                  *
0010  *  but WITHOUT ANY WARRANTY; without even the implied warranty of                   *
0011  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                    *
0012  *  GNU General Public License for more details.                                     *
0013  *                                                                                   *
0014  *  You should have received a copy of the GNU General Public License                *
0015  *  along with this program; if not, write to the Free Software                      *
0016  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA   *
0017  *************************************************************************************/
0018 
0019 
0020 #ifndef ABSTRACTEXPRESSIONTRANSFORMER_H
0021 #define ABSTRACTEXPRESSIONTRANSFORMER_H
0022 
0023 namespace Analitza
0024 {
0025 class Ci;
0026 class Vector;
0027 class Matrix;
0028 class MatrixRow;
0029 class Container;
0030 class List;
0031 class Apply;
0032 class Object;
0033 
0034 class AbstractExpressionTransformer
0035 {
0036     public:
0037         virtual ~AbstractExpressionTransformer();
0038         
0039         virtual Object* walk(const Object* o);
0040         virtual Object* walkApply(const Apply* o);
0041         virtual Object* walkVariable(const Ci* o);
0042         virtual Object* walkList(const List* o);
0043         virtual Object* walkVector(const Vector* o);
0044         virtual Object* walkMatrix(const Matrix* o);
0045         virtual Object* walkMatrixRow(const MatrixRow* o);
0046         virtual Object* walkContainer(const Container* o);
0047 };
0048 
0049 }
0050 
0051 #endif // ABSTRACTEXPRESSIONWALKER_H