📄 allocator_result.cc
字号:
#include "mysqlcppapi/query_results/Allocator_Result.h"namespace mysqlcppapi{Allocator_Result::cpointer Allocator_Result::allocate(){ //Can only be allocated by a specific query. return 0; }void Allocator_Result::deallocate(cpointer pInstance){ ::mysql_free_result(pInstance); //TODO: error handling?}} //namespace
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -