src/types.cc

changeset 590
7aec744ce97b
parent 579
4e140de264d2
child 600
209e3f1f7b2c
equal deleted inserted replaced
589:1417828920e6 590:7aec744ce97b
318 318
319 StringFormatArg::StringFormatArg (const char* v) 319 StringFormatArg::StringFormatArg (const char* v)
320 { m_val = v; 320 { m_val = v;
321 } 321 }
322 322
323 StringFormatArg::StringFormatArg (const StringConfig& v)
324 { m_val = v.value;
325 }
326
327 StringFormatArg::StringFormatArg (const IntConfig& v)
328 { m_val.number (v.value);
329 }
330
331 StringFormatArg::StringFormatArg (const FloatConfig& v)
332 { m_val.number (v.value);
333 }
334
335 StringFormatArg::StringFormatArg (const void* v) 323 StringFormatArg::StringFormatArg (const void* v)
336 { m_val.sprintf ("%p", v); 324 { m_val.sprintf ("%p", v);
337 } 325 }
338 326
339 // ============================================================================= 327 // =============================================================================

mercurial