11 lines
310 B
C
11 lines
310 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
|
||
|
//Taken from http://stackoverflow.com/a/5590404
|
||
|
#define SSTR( x ) static_cast< std::ostringstream & >( \
|
||
|
( std::ostringstream() << std::dec << x ) ).str()
|
||
|
|
||
|
class Utility {
|
||
|
public:
|
||
|
static std::string truncate(std::string str, size_t width, bool show_ellipsis = true);
|
||
|
};
|