#ifndef MYSQL_OPTS_H #define MYSQL_OPTS_H #include #include #include #include namespace MySQL { typedef boost::optional OptString; DLL_PUBLIC const char * operator~(const OptString & os); } namespace std { template DLL_PUBLIC std::istream & operator>>(std::istream & s, boost::optional & o); template DLL_PUBLIC std::istream & operator>>(std::istream & s, std::vector & o); } #endif