Skip to content
Snippets Groups Projects
Commit 7133636b authored by Dominique Blouin's avatar Dominique Blouin
Browse files

Issue #98: Fixing ZigBee code generator

parent 975398bb
No related branches found
No related tags found
1 merge request!24Resolve "C code generated for ZigBee tutorial"
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 */";
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment