You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ( name == "bin2cpp_output_file_macro_guard" ) return getCppIncludeGuardMacroName(mContext.headerFilename);
62
-
if ( name == "bin2cpp_embedded_file_class_macro_guard_prefix" ) return getClassMacroGuardPrefix();
63
62
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);
65
65
if ( name == "bin2cpp_file_manager_header_file_name" ) return mContext.managerHeaderFilename;
66
66
if ( name == "bin2cpp_file_manager_macro_guard_prefix" ) return getFileManagerMacroGuardPrefix();
67
67
if ( name == "bin2cpp_baseclass" ) return mContext.baseClass;
68
68
if ( name == "bin2cpp_classname" ) return getClassName();
69
69
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);
76
76
if ( name == "bin2cpp_function_identifier" ) return mContext.functionIdentifier;
77
77
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();
79
79
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();
86
86
if ( name == "bin2cpp_cpp_get_file_manager_registration_impl" && mContext.registerFiles ) return getCppFileManagerRegistrationImplementationTemplate();
87
87
if ( name == "bin2cpp_c_file_manager_registration_predeclaration" && mContext.registerFiles ) return getCFileManagerRegistrationPredeclarationImplementation();
88
88
if ( name == "bin2cpp_c_file_manager_registration_implementation" && mContext.registerFiles ) return getCFileManagerStaticFileRegistrationImplementation();
0 commit comments