?? time_base.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 + -