The-Powder-Toy/src/Format.h

27 lines
626 B
C
Raw Normal View History

#pragma once
#include <sstream>
#include <vector>
class VideoBuffer;
namespace format
{
template <typename T> std::string NumberToString(T number)
{
std::stringstream ss;
ss << number;
return ss.str();
}
template <typename T> T StringToNumber(const std::string & text)
{
std::stringstream ss(text);
T number;
return (ss >> number)?number:0;
}
std::string UnixtimeToDate(time_t unixtime, std::string dateFomat = "%d %b %Y");
std::string UnixtimeToDateMini(time_t unixtime);
std::vector<char> VideoBufferToPNG(const VideoBuffer & vidBuf);
unsigned long CalculateCRC(unsigned char * data, int length);
}