Emu?
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
307 B

/* PlipUtility.h
*
* Miscellaneous helper functions.
*/
#include <string>
namespace Plip {
class PlipUtility {
public:
static std::string DumpValue(const std::string &label, uintmax_t value, int precision);
static std::string FormatHex(uintmax_t value, int precision);
};
}