███████████-mobile: More accurate clicks handling. [#MOBMET-1212]

This commit is contained in:
Sergey Magidovich 2015-03-25 13:08:04 +03:00
parent b332a14f1f
commit 3d95d19283
2 changed files with 23 additions and 3 deletions

View File

@ -185,3 +185,12 @@ inline std::ostream & operator<< (std::ostream & ostr, const Date & date)
}
}
namespace std
{
inline string to_string(const mysqlxx::Date & date)
{
return date.toString();
}
}

View File

@ -190,3 +190,14 @@ inline std::ostream & operator<< (std::ostream & ostr, const DateTime & datetime
}
}
namespace std
{
inline string to_string(const mysqlxx::DateTime & datetime)
{
stringstream str;
str << datetime;
return str.str();
}
}