|
|
|
@ -454,13 +454,9 @@ public:
|
|
|
|
|
/** Convert the string to a double precision floating point value. */ |
|
|
|
|
double ToDouble() const; |
|
|
|
|
|
|
|
|
|
/** Construct a plString using a printf-like format string. */ |
|
|
|
|
hsDeprecated("plString::Format is deprecated -- use plFormat instead") |
|
|
|
|
static plString Format(const char *fmt, ...); |
|
|
|
|
|
|
|
|
|
/** Construct a plString using a printf-like format string.
|
|
|
|
|
* This function should be called inside of vararg functions, such as |
|
|
|
|
* plString::Format(). |
|
|
|
|
* This function should be called inside of other vararg functions, |
|
|
|
|
* but those should be eventually replaced with plFormat-based variants. |
|
|
|
|
*/ |
|
|
|
|
hsDeprecated("plString::IFormat is deprecated -- use plFormat instead") |
|
|
|
|
static plString IFormat(const char *fmt, va_list vptr); |
|
|
|
|