1 /* 2 * Copyright 2006 Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Ingo Weinhold <bonefish@cs.tu-berlin.de> 7 * Stephan Aßmus <superstippi@gmx.de> 8 */ 9 10 #include "ExpressionParser.h" 11 12 ExpressionParser::ExpressionParser() 13 { 14 } 15 16 17 double 18 ExpressionParser::Evaluate(const char* expressionString) 19 { 20 } 21 22