⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 time_base.h

📁 有关MYSQL的开源码
💻 H
字号:
#ifndef MYSQLCPPAPI_time_base_h#define MYSQLCPPAPI_time_base_h#include "mysqlcppapi/datetime/datetime_base.h"namespace mysqlcppapi{class time_base : virtual public datetime_base{public:  time_base();  virtual ~time_base();  typedef short int tiny_int;  tiny_int hour;  tiny_int minute;    tiny_int second;  std::ostream& out_stream(std::ostream& str) const;  std::string::size_type convert(const std::string& str);  protected:  short int compare(const time_base* other) const;};  } //namespace#endif //MYSQLCPPAPI_time_base_h

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -