?? date_base.h
字號:
#ifndef MYSQLCPPAPI_DATE_BASE_H#define MYSQLCPPAPI_DATE_BASE_H#include "mysqlcppapi/datetime/datetime_base.h"namespace mysqlcppapi{class date_base : virtual public datetime_base{public: short int year; typedef short int tiny_int; tiny_int month; tiny_int day; std::ostream& out_stream(std::ostream&) const; std::string::size_type convert(const std::string&); protected: short int compare(const date_base *other) const;};} //namespace#endif //MYSQLCPPAPI_DATE_BASE_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -