/* * [CompilerCat.java] * * Summary: enum to track Various types of compiler we invoke. * * Copyright: (c) 2009-2017 Roedy Green, Canadian Mind Products, http://mindprod.com * * Licence: This software may be copied and used freely for any purpose but military. * http://mindprod.com/contact/nonmil.html * * Requires: JDK 1.8+ * * Created with: JetBrains IntelliJ IDEA IDE http://www.jetbrains.com/idea/ * * Version History: * 1.0 2009-02-08 initial version */ package com.mindprod.zzz; /** * enum to track Various types of compiler we invoke. * * @author Roedy Green, Canadian Mind Products * @version 1.0 2009-02-08 initial version * @since 2009-02-08 */ public enum CompilerCat { JAVA, CPP, C, ASM, NONE }