Ai
2 Star 0 Fork 0

mirrors_android_source/cxx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
blobstore.h 480 Bytes
一键复制 编辑 原始数据 按行查看 历史
#pragma once
#include "rust/cxx.h"
#include <memory>
namespace org {
namespace blobstore {
struct MultiBuf;
struct BlobMetadata;
class BlobstoreClient {
public:
BlobstoreClient();
uint64_t put(MultiBuf &buf) const;
void tag(uint64_t blobid, rust::Str tag) const;
BlobMetadata metadata(uint64_t blobid) const;
private:
class impl;
std::shared_ptr<impl> impl;
};
std::unique_ptr<BlobstoreClient> new_blobstore_client();
} // namespace blobstore
} // namespace org
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_android_source/cxx.git
git@gitee.com:mirrors_android_source/cxx.git
mirrors_android_source
cxx
cxx
main

搜索帮助