001/*
002// This software is subject to the terms of the Eclipse Public License v1.0
003// Agreement, available at the following URL:
004// http://www.eclipse.org/legal/epl-v10.html.
005// You must accept the terms of that agreement to use this software.
006//
007// Copyright (C) 2005-2007 Pentaho and others
008// All Rights Reserved.
009*/
010package mondrian.olap;
011
012import mondrian.calc.ResultStyle;
013
014/**
015 * Allows expressions to be evaluated native, e.g. in SQL.
016 *
017 * @author av
018 * @since Nov 11, 2005
019 */
020
021public interface NativeEvaluator {
022    Object execute(ResultStyle resultStyle);
023}
024
025// End NativeEvaluator.java