mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-11 18:34:58 +01:00
30 lines
631 B
C++
30 lines
631 B
C++
#ifndef BASETOOLKIT_H
|
|
#define BASETOOLKIT_H
|
|
|
|
#include <list>
|
|
#include <string>
|
|
|
|
namespace BaseToolkit
|
|
{
|
|
|
|
// get integer with unique id
|
|
uint64_t uniqueId();
|
|
|
|
// proposes a name that is not already in the list
|
|
std::string uniqueName(const std::string &basename, std::list<std::string> existingnames);
|
|
|
|
// get a transliteration to Latin of any string
|
|
std::string transliterate(std::string input);
|
|
|
|
// get a string to display memory size with unit KB, MB, GB, TB
|
|
std::string byte_to_string(long b);
|
|
|
|
// get a string to display bit size with unit Kbit, MBit, Gbit, Tbit
|
|
std::string bits_to_string(long b);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif // BASETOOLKIT_H
|