String formatting class. More...
#include <string_format.h>
Public Member Functions | |
Construction | |
| StringFormat (const std::string &format_string) | |
| Constructs a TempStringFormat. More... | |
| ~StringFormat () | |
Attributes | |
| const std::string & | get_result () const |
Operations | |
| void | set_arg (int index, const std::string &text) |
| Set arg. More... | |
| void | set_arg (int index, int value, int min_length=0) |
| Set arg. More... | |
| void | set_arg (int index, unsigned int value, int min_length=0) |
| Set arg. More... | |
| void | set_arg (int index, long unsigned int value, int min_length=0) |
| Set arg. More... | |
| void | set_arg (int index, long long value, int min_length=0) |
| Set arg. More... | |
| void | set_arg (int index, unsigned long long value, int min_length=0) |
| Set arg. More... | |
| void | set_arg (int index, float value) |
| Set arg. More... | |
| void | set_arg (int index, double value) |
| Set arg. More... | |
String formatting class.