Initial Commit
Blank working project
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user