/**
  * Calculates the input with parenthesis levels
  *
  * @param string $string Input string, eg "(123 + 456) / 789 - 4"
  * @return integer Calculated value. Or error string.
  * @see calcPriority(), tslib_cObj::stdWrap()
  * @deprecated since TYPO3 4.6, will be removed in TYPO3 6.0 - Use t3lib_utility_Math::calculateWithParentheses() instead
  */
 public static function calcParenthesis($string)
 {
     return t3lib_utility_Math::calculateWithParentheses($string);
 }
 /**
  * Calculates the input with parenthesis levels
  *
  * @param string $string Input string, eg "(123 + 456) / 789 - 4"
  * @return integer Calculated value. Or error string.
  * @see calcPriority(), tslib_cObj::stdWrap()
  * @deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Math::calculateWithParentheses() instead
  */
 public static function calcParenthesis($string)
 {
     self::logDeprecatedFunction();
     return t3lib_utility_Math::calculateWithParentheses($string);
 }