/*
// $Id: //open/mondrian-release/3.2/src/main/mondrian/olap/type/SymbolType.java#1 $
// This software is subject to the terms of the Eclipse Public License v1.0
// Agreement, available at the following URL:
// http://www.eclipse.org/legal/epl-v10.html.
// Copyright (C) 2005-2009 Julian Hyde
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
*/
package mondrian.olap.type;
/**
* The type of a symbolic expression.
*
* @author jhyde
* @since Feb 17, 2005
* @version $Id: //open/mondrian-release/3.2/src/main/mondrian/olap/type/SymbolType.java#1 $
*/
public class SymbolType extends ScalarType {
/**
* Creates a symbol type.
*/
public SymbolType() {
super("SYMBOL");
}
}
// End SymbolType.java
|