Files
William Miceli c2f788aa3e Initial Commit
Blank working project
2020-08-05 17:53:34 -04:00

30 lines
479 B
Plaintext

/* 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