package edu.udel.cis.vsl.tass.ast.IF.type;
/**
* An integer type, such as "int" or "long int" or "short int" in C.
*/
public interface IntegerTypeNodeIF extends TypeNodeIF {
public enum IntType {CHAR, SHORT, INT, LONG, LONGLONG};
public IntType intType();
public boolean isSigned();
public void setIntType(IntType type);
public void setSigned(boolean signed);
}