📄 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 + -