#include "platform.h"
#include "defs.h"
#include <stdlib.h>
Include dependency graph for convert.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Namespaces | |
namespace | mysqlpp |
These templates are the mechanism used within mysqlpp::ColData_Tmpl for its string-to-something conversions.
|
Value: template <> \ class mysql_convert<TYPE> {\ private:\ TYPE num;\ public:\ mysql_convert(const char* str, const char *& end) { \ num = FUNC(str, const_cast<char **>(&end),10);}\ operator TYPE () {return num;}\ };\ |
|
Value: template <> \ class mysql_convert<TYPE> {\ private:\ TYPE num;\ public:\ mysql_convert(const char* str, const char *& end) { \ num = FUNC(str, const_cast<char **>(&end));}\ operator TYPE () {return num;}\ };\ |