#ifndef __FORMATTERS_MATH_H
#define __FORMATTERS_MATH_H
/*
5D programming language
Copyright (C) 2011 Danny Milosavljevic
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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see .
*/
#include
#include
#include <5D/Operations>
#include <5D/Values>
#include "Values/Values"
namespace Scanners {
struct LOperatorPrecedenceList;
};
namespace Formatters {
namespace Math {
void print(Values::NodeT OPL, FILE* output_file, int position, int indentation, Values::NodeT node);
DECLARE_SIMPLE_OPERATION(printMath)
}; // end namespace Math
}; // end namespace Formatters
#endif /* ndef __FORMATTERS_MATH_H */