Commit bb8d9b9f authored by Matthew Dawson's avatar Matthew Dawson
Browse files

Add missing interface from previous commit.

SVN was being weird and missed this file.


git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/branches/TableTool_javization@9651 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
parent 4bef0afb
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package ca.mcmaster.cas.matlab2smt;

/** This interface means the expression is a value with no further expansion possible.
 * This is just a marker to mean an expression is only a value.
 *
 * @author matthew
 */
interface MatlabExpressionValue extends MatlabExpression {
    
}