1 /* 2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Copyright 2014, Rene Gollent, rene@gollent.com. 4 * Distributed under the terms of the MIT License. 5 */ 6 7 8 #include "SourceLanguage.h" 9 10 11 SourceLanguage::~SourceLanguage() 12 { 13 } 14 15 16 SyntaxHighlighter* 17 SourceLanguage::GetSyntaxHighlighter() const 18 { 19 return NULL; 20 } 21 22 23 status_t 24 SourceLanguage::EvaluateExpression(const BString& expression, 25 ValueNodeManager* manager, TeamTypeInformation* info, 26 ExpressionResult*& _resultValue, ValueNode*& _neededNode) 27 { 28 return B_NOT_SUPPORTED; 29 } 30