DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ RegisterLogTamplate()

void LogTemplates::RegisterLogTamplate ( LogTemplateID template_id,
string author,
string plugin,
string label )
inlinestaticprivate

См. определение в файле LogTemplates.c строка 11

12 {
13 if ( m_LogTemplates == NULL )
14 {
16 }
17
18 if ( m_LogTemplates.Contains(template_id) )
19 {
20 Debug.Log("Template ID: "+string.ToString(template_id)+" is alredy exist!", "LogTemplate.h -> OnInit()", "System", "Template Registration", "None");
21 }
22 else
23 {
24 LogTemplate params = new LogTemplate(author, plugin, label);
25 m_LogTemplates.Set(template_id, params);
26 }
27 }
map
Определения ControlsXboxNew.c:4
proto string ToString()
Param3< string, string, string > LogTemplate
Определения LogTemplates.c:1
void Debug()
Определения UniversalTemperatureSource.c:349
ref map< LogTemplateID, ref LogTemplate > m_LogTemplates
Определения LogTemplates.c:9

Перекрестные ссылки Debug::Log(), m_LogTemplates и ToString().

Используется в Init().