Skip to content

Commit 2e01ed5

Browse files
committed
Renamed some markers in the file templates and methods in the code for clarity.
1 parent a82f669 commit 2e01ed5

File tree

7 files changed

+74
-74
lines changed

7 files changed

+74
-74
lines changed

src/bin2cpp/ArrayGenerator.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ namespace bin2cpp
5656

5757
const std::string text = ""
5858
"${bin2cpp_output_file_header}"
59-
"#include \"${bin2cpp_cpp_header_include_path}\"\n"
59+
"#include \"${bin2cpp_header_source_file_include_path}\"\n"
6060
"#include <iostream>\n"
6161
"#include <fstream> //for ofstream\n"
6262
"namespace ${bin2cpp_namespace}\n"
@@ -67,8 +67,8 @@ namespace bin2cpp
6767
" ${bin2cpp_classname}() {}\n"
6868
" virtual ~${bin2cpp_classname}() {}\n"
6969
" virtual size_t getSize() const { return ${bin2cpp_input_file_size}; }\n"
70-
" virtual const char * getFileName() const { ${bin2cpp_cpp_get_file_name_impl} }\n"
71-
" virtual const char * getFilePath() const { ${bin2cpp_cpp_get_file_path_impl} }\n"
70+
" virtual const char * getFileName() const { ${bin2cpp_file_object_file_name_impl} }\n"
71+
" virtual const char * getFilePath() const { ${bin2cpp_file_object_file_path_impl} }\n"
7272
" virtual const char * getBuffer() const\n"
7373
" {\n"
7474
" static const unsigned char buffer[] = {\n${bin2cpp_insert_input_file_as_code}" // INPUT FILE AS CODE HERE
@@ -77,7 +77,7 @@ namespace bin2cpp
7777
" }\n"
7878
"${bin2cpp_cpp_get_save_method_impl}"
7979
" };\n"
80-
" const ${bin2cpp_baseclass} & ${bin2cpp_cpp_getter_function_name}() { static ${bin2cpp_classname} _instance; return _instance; }\n"
80+
" const ${bin2cpp_baseclass} & ${bin2cpp_getter_function_name}() { static ${bin2cpp_classname} _instance; return _instance; }\n"
8181
"${bin2cpp_cpp_get_file_manager_registration_impl}"
8282
"}; //${bin2cpp_namespace}\n";
8383

@@ -111,7 +111,7 @@ namespace bin2cpp
111111
"#if defined(_WIN32) && !defined(_CRT_SECURE_NO_WARNINGS)\n"
112112
"#define _CRT_SECURE_NO_WARNINGS\n"
113113
"#endif\n"
114-
"#include \"${bin2cpp_cpp_header_include_path}\"\n"
114+
"#include \"${bin2cpp_header_source_file_include_path}\"\n"
115115
"#include <stdlib.h> // for malloc\n"
116116
"#include <string.h> // for memset\n"
117117
"#include <stdio.h> // for fopen\n"
@@ -159,8 +159,8 @@ namespace bin2cpp
159159
" // initialize\n"
160160
" ${bin2cpp_baseclass}* file = &${bin2cpp_function_identifier_lowercase}_file;\n"
161161
" file->size = ${bin2cpp_input_file_size}ULL;\n"
162-
" file->file_name = \"${bin2cpp_get_file_obj_file_name}\";\n"
163-
" file->file_path = \"${bin2cpp_get_file_obj_file_path}\";\n"
162+
" file->file_name = \"${bin2cpp_file_object_file_name}\";\n"
163+
" file->file_path = \"${bin2cpp_file_object_file_path}\";\n"
164164
" file->buffer = NULL;\n"
165165
" file->load = ${bin2cpp_function_identifier_lowercase}_load;\n"
166166
" file->unload = ${bin2cpp_function_identifier_lowercase}_free;\n"
@@ -171,7 +171,7 @@ namespace bin2cpp
171171
"${bin2cpp_c_file_manager_registration_post_init_impl}"
172172
"}\n"
173173
"\n"
174-
"${bin2cpp_baseclass}* ${bin2cpp_cpp_getter_function_name}(void)\n"
174+
"${bin2cpp_baseclass}* ${bin2cpp_getter_function_name}(void)\n"
175175
"{\n"
176176
" ${bin2cpp_function_identifier_lowercase}_init();\n"
177177
" return &${bin2cpp_function_identifier_lowercase}_file;\n"

src/bin2cpp/BaseGenerator.cpp

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -59,30 +59,30 @@ namespace bin2cpp
5959
std::string BaseGenerator::lookupTemplateVariable(const std::string& name)
6060
{
6161
if ( name == "bin2cpp_output_file_macro_guard" ) return getCppIncludeGuardMacroName(mContext.headerFilename);
62-
if ( name == "bin2cpp_embedded_file_class_macro_guard_prefix" ) return getClassMacroGuardPrefix();
6362
if ( name == "bin2cpp_output_file_header" ) return getHeaderTemplate();
64-
if ( name == "bin2cpp_filemanager_file_header" ) return getHeaderTemplate(false);
63+
if ( name == "bin2cpp_file_object_macro_guard_prefix" ) return getClassMacroGuardPrefix();
64+
if ( name == "bin2cpp_file_manager_file_header" ) return getHeaderTemplate(false);
6565
if ( name == "bin2cpp_file_manager_header_file_name" ) return mContext.managerHeaderFilename;
6666
if ( name == "bin2cpp_file_manager_macro_guard_prefix" ) return getFileManagerMacroGuardPrefix();
6767
if ( name == "bin2cpp_baseclass" ) return mContext.baseClass;
6868
if ( name == "bin2cpp_classname" ) return getClassName();
6969
if ( name == "bin2cpp_namespace" ) return mContext.codeNamespace;
70-
if ( name == "bin2cpp_baseclass_uppercase" ) return ra::strings::Uppercase(mContext.baseClass);
71-
if ( name == "bin2cpp_classname_uppercase" ) return ra::strings::Uppercase(getClassName());
72-
if ( name == "bin2cpp_namespace_uppercase" ) return ra::strings::Lowercase(mContext.codeNamespace);
73-
if ( name == "bin2cpp_baseclass_lowercase" ) return ra::strings::Lowercase(mContext.baseClass);
74-
if ( name == "bin2cpp_classname_lowercase" ) return ra::strings::Lowercase(getClassName());
75-
if ( name == "bin2cpp_namespace_lowercase" ) return ra::strings::Lowercase(mContext.codeNamespace);
70+
//if ( name == "bin2cpp_baseclass_uppercase" ) return ra::strings::Uppercase(mContext.baseClass);
71+
//if ( name == "bin2cpp_classname_uppercase" ) return ra::strings::Uppercase(getClassName());
72+
//if ( name == "bin2cpp_namespace_uppercase" ) return ra::strings::Lowercase(mContext.codeNamespace);
73+
//if ( name == "bin2cpp_baseclass_lowercase" ) return ra::strings::Lowercase(mContext.baseClass);
74+
//if ( name == "bin2cpp_classname_lowercase" ) return ra::strings::Lowercase(getClassName());
75+
//if ( name == "bin2cpp_namespace_lowercase" ) return ra::strings::Lowercase(mContext.codeNamespace);
7676
if ( name == "bin2cpp_function_identifier" ) return mContext.functionIdentifier;
7777
if ( name == "bin2cpp_function_identifier_lowercase" ) return ra::strings::Lowercase(mContext.functionIdentifier);
78-
if ( name == "bin2cpp_cpp_getter_function_name" ) return getGetterFunctionName();
78+
if ( name == "bin2cpp_getter_function_name" ) return getGetterFunctionName();
7979
if ( name == "bin2cpp_insert_input_file_as_code" ) return getInputFileDataAsCode();
80-
if ( name == "bin2cpp_cpp_header_include_path" ) return getCppHeaderIncludePath();
81-
if ( name == "bin2cpp_cpp_get_file_name_impl" ) return getImplOfGetFileName();
82-
if ( name == "bin2cpp_cpp_get_file_path_impl" ) return getImplOfGetFilePath();
83-
if ( name == "bin2cpp_get_file_obj_file_name" ) return getFileClassFileName();
84-
if ( name == "bin2cpp_get_file_obj_file_path" ) return getFileClassFilePath();
85-
if ( name == "bin2cpp_cpp_get_save_method_impl" ) return getSaveMethodTemplate();
80+
if ( name == "bin2cpp_header_source_file_include_path" ) return getCppHeaderIncludePath();
81+
if ( name == "bin2cpp_file_object_file_name_impl" ) return getFileClassGetFileNameImplementation();
82+
if ( name == "bin2cpp_file_object_file_path_impl" ) return getFileClassGetFilePathImplementation();
83+
if ( name == "bin2cpp_file_object_file_name" ) return getFileClassFileName();
84+
if ( name == "bin2cpp_file_object_file_path" ) return getFileClassFilePath();
85+
if ( name == "bin2cpp_cpp_get_save_method_impl" ) return getCppSaveMethodTemplate();
8686
if ( name == "bin2cpp_cpp_get_file_manager_registration_impl" && mContext.registerFiles ) return getCppFileManagerRegistrationImplementationTemplate();
8787
if ( name == "bin2cpp_c_file_manager_registration_predeclaration" && mContext.registerFiles ) return getCFileManagerRegistrationPredeclarationImplementation();
8888
if ( name == "bin2cpp_c_file_manager_registration_implementation" && mContext.registerFiles ) return getCFileManagerStaticFileRegistrationImplementation();
@@ -204,7 +204,7 @@ namespace bin2cpp
204204
return header;
205205
}
206206

207-
std::string BaseGenerator::getSaveMethodTemplate()
207+
std::string BaseGenerator::getCppSaveMethodTemplate()
208208
{
209209
std::string output;
210210
output << " virtual bool save(const char * filename) const\n";
@@ -302,7 +302,7 @@ namespace bin2cpp
302302
return output;
303303
}
304304

305-
std::string BaseGenerator::getImplOfGetFileName()
305+
std::string BaseGenerator::getFileClassGetFileNameImplementation()
306306
{
307307
std::string output;
308308

@@ -329,7 +329,7 @@ namespace bin2cpp
329329
return output;
330330
}
331331

332-
std::string BaseGenerator::getImplOfGetFilePath()
332+
std::string BaseGenerator::getFileClassGetFilePathImplementation()
333333
{
334334
std::string output;
335335

@@ -475,8 +475,8 @@ namespace bin2cpp
475475
"\n"
476476
"namespace ${bin2cpp_namespace}\n"
477477
"{\n"
478-
" #ifndef ${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_CLASS\n"
479-
" #define ${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_CLASS\n"
478+
" #ifndef ${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_CLASS\n"
479+
" #define ${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_CLASS\n"
480480
" class ${bin2cpp_baseclass}\n"
481481
" {\n"
482482
" public:\n"
@@ -487,8 +487,8 @@ namespace bin2cpp
487487
" virtual const char * getBuffer() const = 0;\n"
488488
" virtual bool save(const char * filename) const = 0;\n"
489489
" };\n"
490-
" #endif //${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_CLASS\n"
491-
" const ${bin2cpp_baseclass} & ${bin2cpp_cpp_getter_function_name}();\n"
490+
" #endif //${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_CLASS\n"
491+
" const ${bin2cpp_baseclass} & ${bin2cpp_getter_function_name}();\n"
492492
"}; //${bin2cpp_namespace}\n"
493493
"\n"
494494
"#endif //${bin2cpp_output_file_macro_guard}\n"
@@ -563,8 +563,8 @@ namespace bin2cpp
563563
"#include <stddef.h>\n"
564564
"#include <stdbool.h>\n"
565565
"\n"
566-
"#ifndef ${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_STRUCT\n"
567-
"#define ${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_STRUCT\n"
566+
"#ifndef ${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_STRUCT\n"
567+
"#define ${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_STRUCT\n"
568568
"typedef struct ${bin2cpp_baseclass} ${bin2cpp_baseclass};\n"
569569
"typedef bool(*${bin2cpp_namespace}_load_func)();\n"
570570
"typedef void(*${bin2cpp_namespace}_free_func)();\n"
@@ -580,8 +580,8 @@ namespace bin2cpp
580580
" ${bin2cpp_namespace}_save_func save;\n"
581581
"} ${bin2cpp_baseclass};\n"
582582
"typedef ${bin2cpp_baseclass}* ${bin2cpp_baseclass}Ptr;\n"
583-
"#endif //${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_STRUCT\n"
584-
"${bin2cpp_baseclass}* ${bin2cpp_cpp_getter_function_name}(void);\n"
583+
"#endif //${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_STRUCT\n"
584+
"${bin2cpp_baseclass}* ${bin2cpp_getter_function_name}(void);\n"
585585
"\n"
586586
"#endif //${bin2cpp_output_file_macro_guard}\n"
587587
;

src/bin2cpp/BaseGenerator.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ namespace bin2cpp
6060
virtual std::string getCppFilePath(const char * header_file_path);
6161
virtual std::string getHeaderTemplate();
6262
virtual std::string getHeaderTemplate(bool include_source_file);
63-
virtual std::string getSaveMethodTemplate();
63+
virtual std::string getCppSaveMethodTemplate();
6464
virtual std::string getCppFileManagerRegistrationImplementationTemplate();
6565
virtual std::string getCFileManagerRegistrationPredeclarationImplementation();
6666
virtual std::string getCFileManagerStaticFileRegistrationImplementation();
6767
virtual std::string getClassName();
6868
virtual std::string getClassMacroGuardPrefix();
6969
virtual std::string getFileManagerMacroGuardPrefix();
70-
virtual std::string getImplOfGetFileName();
71-
virtual std::string getImplOfGetFilePath();
70+
virtual std::string getFileClassGetFileNameImplementation();
71+
virtual std::string getFileClassGetFilePathImplementation();
7272
virtual std::string getFileClassFileName();
7373
virtual std::string getFileClassFilePath();
7474
virtual std::string getCppHeaderIncludePath();

src/bin2cpp/ManagerGenerator.cpp

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ namespace bin2cpp
4949
bool ManagerGenerator::createCppHeaderFile(const char* file_path)
5050
{
5151
const std::string text = ""
52-
"${bin2cpp_filemanager_file_header}"
52+
"${bin2cpp_file_manager_file_header}"
5353
"#ifndef ${bin2cpp_file_manager_macro_guard_prefix}\n"
5454
"#define ${bin2cpp_file_manager_macro_guard_prefix}\n"
5555
"\n"
@@ -58,8 +58,8 @@ namespace bin2cpp
5858
"\n"
5959
"namespace ${bin2cpp_namespace}\n"
6060
"{\n"
61-
" #ifndef ${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_CLASS\n"
62-
" #define ${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_CLASS\n"
61+
" #ifndef ${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_CLASS\n"
62+
" #define ${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_CLASS\n"
6363
" class ${bin2cpp_baseclass}\n"
6464
" {\n"
6565
" public:\n"
@@ -70,10 +70,10 @@ namespace bin2cpp
7070
" virtual const char * getBuffer() const = 0;\n"
7171
" virtual bool save(const char * filename) const = 0;\n"
7272
" };\n"
73-
" #endif //${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_CLASS\n"
73+
" #endif //${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_CLASS\n"
7474
"\n"
75-
" #ifndef ${bin2cpp_embedded_file_class_macro_guard_prefix}_FILEMANAGER_CLASS\n"
76-
" #define ${bin2cpp_embedded_file_class_macro_guard_prefix}_FILEMANAGER_CLASS\n"
75+
" #ifndef ${bin2cpp_file_object_macro_guard_prefix}_FILEMANAGER_CLASS\n"
76+
" #define ${bin2cpp_file_object_macro_guard_prefix}_FILEMANAGER_CLASS\n"
7777
" class FileManager\n"
7878
" {\n"
7979
" private:\n"
@@ -91,7 +91,7 @@ namespace bin2cpp
9191
" private:\n"
9292
" std::vector<t_func> functions_;\n"
9393
" };\n"
94-
" #endif //${bin2cpp_embedded_file_class_macro_guard_prefix}_FILEMANAGER_CLASS\n"
94+
" #endif //${bin2cpp_file_object_macro_guard_prefix}_FILEMANAGER_CLASS\n"
9595
"}; //${bin2cpp_namespace}\n"
9696
"\n"
9797
"#endif //${bin2cpp_file_manager_macro_guard_prefix}\n"
@@ -107,7 +107,7 @@ namespace bin2cpp
107107
bool ManagerGenerator::createCppSourceFile(const char* file_path)
108108
{
109109
const std::string text = ""
110-
"${bin2cpp_filemanager_file_header}"
110+
"${bin2cpp_file_manager_file_header}"
111111
"#include \"${bin2cpp_file_manager_header_file_name}\"\n"
112112
"#include <string>\n"
113113
"#include <string.h> // strlen\n"
@@ -227,15 +227,15 @@ namespace bin2cpp
227227
bool ManagerGenerator::createCHeaderFile(const char* file_path)
228228
{
229229
const std::string text = ""
230-
"${bin2cpp_filemanager_file_header}"
230+
"${bin2cpp_file_manager_file_header}"
231231
"#ifndef ${bin2cpp_file_manager_macro_guard_prefix}\n"
232232
"#define ${bin2cpp_file_manager_macro_guard_prefix}\n"
233233
"\n"
234234
"#include <stddef.h>\n"
235235
"#include <stdbool.h>\n"
236236
"\n"
237-
"#ifndef ${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_STRUCT\n"
238-
"#define ${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_STRUCT\n"
237+
"#ifndef ${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_STRUCT\n"
238+
"#define ${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_STRUCT\n"
239239
"typedef struct ${bin2cpp_baseclass} ${bin2cpp_baseclass};\n"
240240
"typedef bool(*${bin2cpp_namespace}_load_func)();\n"
241241
"typedef void(*${bin2cpp_namespace}_free_func)();\n"
@@ -251,7 +251,7 @@ namespace bin2cpp
251251
" ${bin2cpp_namespace}_save_func save;\n"
252252
"} ${bin2cpp_baseclass};\n"
253253
"typedef ${bin2cpp_baseclass}* ${bin2cpp_baseclass}Ptr;\n"
254-
"#endif //${bin2cpp_embedded_file_class_macro_guard_prefix}_EMBEDDEDFILE_STRUCT\n"
254+
"#endif //${bin2cpp_file_object_macro_guard_prefix}_FILE_OBJECT_STRUCT\n"
255255
"\n"
256256
"size_t ${bin2cpp_namespace}_filemanager_get_file_count();\n"
257257
"bool ${bin2cpp_namespace}_filemanager_register_file(${bin2cpp_baseclass}* file);\n"
@@ -271,7 +271,7 @@ namespace bin2cpp
271271
bool ManagerGenerator::createCSourceFile(const char* file_path)
272272
{
273273
const std::string text = ""
274-
"${bin2cpp_filemanager_file_header}"
274+
"${bin2cpp_file_manager_file_header}"
275275
"#if defined(_WIN32) && !defined(_CRT_SECURE_NO_WARNINGS)\n"
276276
"#define _CRT_SECURE_NO_WARNINGS\n"
277277
"#endif\n"

src/bin2cpp/SegmentGenerator.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ namespace bin2cpp
5959
"#if defined(_WIN32) && !defined(_CRT_SECURE_NO_WARNINGS)\n"
6060
"#define _CRT_SECURE_NO_WARNINGS\n"
6161
"#endif\n"
62-
"#include \"${bin2cpp_cpp_header_include_path}\"\n"
62+
"#include \"${bin2cpp_header_source_file_include_path}\"\n"
6363
"#include <string> //for std::string\n"
6464
"#include <iostream>\n"
6565
"#include <fstream> //for ofstream\n"
@@ -71,8 +71,8 @@ namespace bin2cpp
7171
" ${bin2cpp_classname}() { build(); }\n"
7272
" virtual ~${bin2cpp_classname}() {}\n"
7373
" virtual size_t getSize() const { return ${bin2cpp_input_file_size}; }\n"
74-
" virtual const char * getFileName() const { ${bin2cpp_cpp_get_file_name_impl} }\n"
75-
" virtual const char * getFilePath() const { ${bin2cpp_cpp_get_file_path_impl} }\n"
74+
" virtual const char * getFileName() const { ${bin2cpp_file_object_file_name_impl} }\n"
75+
" virtual const char * getFilePath() const { ${bin2cpp_file_object_file_path_impl} }\n"
7676
" virtual const char * getBuffer() const { return mBuffer.c_str(); }\n"
7777
" void build()\n"
7878
" {\n"
@@ -83,7 +83,7 @@ namespace bin2cpp
8383
" private:\n"
8484
" std::string mBuffer;\n"
8585
" };\n"
86-
" const ${bin2cpp_baseclass} & ${bin2cpp_cpp_getter_function_name}() { static ${bin2cpp_classname} _instance; return _instance; }\n"
86+
" const ${bin2cpp_baseclass} & ${bin2cpp_getter_function_name}() { static ${bin2cpp_classname} _instance; return _instance; }\n"
8787
"${bin2cpp_cpp_get_file_manager_registration_impl}"
8888
"}; //${bin2cpp_namespace}\n";
8989

@@ -105,7 +105,7 @@ namespace bin2cpp
105105
"#if defined(_WIN32) && !defined(_CRT_SECURE_NO_WARNINGS)\n"
106106
"#define _CRT_SECURE_NO_WARNINGS\n"
107107
"#endif\n"
108-
"#include \"${bin2cpp_cpp_header_include_path}\"\n"
108+
"#include \"${bin2cpp_header_source_file_include_path}\"\n"
109109
"#include <stdlib.h> // for malloc\n"
110110
"#include <string.h> // for memset\n"
111111
"#include <stdio.h> // for fopen\n"
@@ -159,8 +159,8 @@ namespace bin2cpp
159159
" // initialize\n"
160160
" ${bin2cpp_baseclass}* file = &${bin2cpp_function_identifier_lowercase}_file;\n"
161161
" file->size = ${bin2cpp_input_file_size}ULL;\n"
162-
" file->file_name = \"${bin2cpp_get_file_obj_file_name}\";\n"
163-
" file->file_path = \"${bin2cpp_get_file_obj_file_path}\";\n"
162+
" file->file_name = \"${bin2cpp_file_object_file_name}\";\n"
163+
" file->file_path = \"${bin2cpp_file_object_file_path}\";\n"
164164
" file->buffer = NULL;\n"
165165
" file->load = ${bin2cpp_function_identifier_lowercase}_load;\n"
166166
" file->unload = ${bin2cpp_function_identifier_lowercase}_free;\n"
@@ -171,7 +171,7 @@ namespace bin2cpp
171171
"${bin2cpp_c_file_manager_registration_post_init_impl}"
172172
"}\n"
173173
"\n"
174-
"${bin2cpp_baseclass}* ${bin2cpp_cpp_getter_function_name}(void)\n"
174+
"${bin2cpp_baseclass}* ${bin2cpp_getter_function_name}(void)\n"
175175
"{\n"
176176
" ${bin2cpp_function_identifier_lowercase}_init();\n"
177177
" return &${bin2cpp_function_identifier_lowercase}_file;\n"

0 commit comments

Comments
 (0)