diff --git a/src/main/java/tmltranslator/modelcompiler/CCodeGenConstants.java b/src/main/java/tmltranslator/modelcompiler/CCodeGenConstants.java new file mode 100644 index 0000000000000000000000000000000000000000..7e8ef86e9c1859fb290b6671ba82f25d9ab1d845 --- /dev/null +++ b/src/main/java/tmltranslator/modelcompiler/CCodeGenConstants.java @@ -0,0 +1,20 @@ +package tmltranslator.modelcompiler; + +public interface CCodeGenConstants { + + String CR = "\n"; + String CR2 = "\n\n"; + String TAB = "\t"; + String TAB2 = "\t\t"; + String TAB3 = "\t\t\t"; + String TAB4 = "\t\t\t\t"; + String SP = " "; + String SC = ";"; + + String NATURAL_TYPE = "int"; + String BOOLEAN_TYPE = "bool"; + + String DEFAULT_NUM_VAL = "0"; + String DEFAULT_BOOL_VAL = Boolean.FALSE.toString(); + String USER_TO_DO = "/* USER TO DO */"; +}