Core/String: Add Format static method
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
#include <Nazara/Core/Endianness.hpp>
|
||||
#include <Nazara/Core/SerializationContext.hpp>
|
||||
#include <atomic>
|
||||
#include <cstdarg>
|
||||
#include <iosfwd>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
@@ -239,6 +240,8 @@ namespace Nz
|
||||
|
||||
static String Boolean(bool boolean);
|
||||
static int Compare(const String& first, const String& second);
|
||||
static inline String Format(const char* format, ...);
|
||||
static String FormatVA(const char* format, va_list arg);
|
||||
static String Number(float number);
|
||||
static String Number(double number);
|
||||
static String Number(long double number);
|
||||
|
||||
Reference in New Issue
Block a user