Initial Commit

Blank working project
This commit is contained in:
William Miceli
2020-08-05 17:53:34 -04:00
commit c2f788aa3e
677 changed files with 244742 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
/* DO NOT EDIT THIS FILE */
/* This file is autogenerated by the text-database code generator */
#ifndef TEXTKEYSANDLANGUAGES_HPP
#define TEXTKEYSANDLANGUAGES_HPP
<%
#ENUM OF LANGUAGES
%>
typedef enum
{
<% if !(countries.empty?) %>
<%= countries %>,
<% end %>
NUMBER_OF_LANGUAGES
} LANGUAGES;
<%
#ENUM DEF OF TEXT_TYPES
%>
typedef enum
{
<% texts.each do |text| %>
<%= text.upcase %>,
<% end %>
NUMBER_OF_TEXT_KEYS
} TEXTS;
#endif // TEXTKEYSANDLANGUAGES_HPP