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-2005 Julian Hyde
008// Copyright (C) 2005-2009 Pentaho
009// All Rights Reserved.
010*/
011package mondrian.olap.type;
012
013/**
014 * The type of a symbolic expression.
015 *
016 * @author jhyde
017 * @since Feb 17, 2005
018 */
019public class SymbolType extends ScalarType {
020
021    /**
022     * Creates a symbol type.
023     */
024    public SymbolType() {
025        super("SYMBOL");
026    }
027}
028
029// End SymbolType.java