├── .gitattributes ├── .github └── workflows │ └── mdbook.yml ├── .gitignore ├── README.md ├── book.toml └── src ├── 00.介绍.md ├── 01.改动日志.md ├── 02.更新指南.md ├── 03.安装说明.md ├── 04.首次尝试.md ├── 05.面对对象编程.md ├── 06.构建系统.md ├── 07.函数.md ├── 08.类.md ├── 09.异常.md ├── 10.智能指针.md ├── 11.类型转换.md ├── 12.Python的C++接口.md ├── 13.内嵌解释器.md ├── 14.杂项.md ├── 15.FAQ.md ├── SUMMARY.md └── my_summary.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/mdbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/.github/workflows/mdbook.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/book.toml -------------------------------------------------------------------------------- /src/00.介绍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/00.介绍.md -------------------------------------------------------------------------------- /src/01.改动日志.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/01.改动日志.md -------------------------------------------------------------------------------- /src/02.更新指南.md: -------------------------------------------------------------------------------- 1 | # 更新指南 2 | -------------------------------------------------------------------------------- /src/03.安装说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/03.安装说明.md -------------------------------------------------------------------------------- /src/04.首次尝试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/04.首次尝试.md -------------------------------------------------------------------------------- /src/05.面对对象编程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/05.面对对象编程.md -------------------------------------------------------------------------------- /src/06.构建系统.md: -------------------------------------------------------------------------------- 1 | ## 6. 构建系统 2 | 3 | 后续再翻译。 -------------------------------------------------------------------------------- /src/07.函数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/07.函数.md -------------------------------------------------------------------------------- /src/08.类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/08.类.md -------------------------------------------------------------------------------- /src/09.异常.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/09.异常.md -------------------------------------------------------------------------------- /src/10.智能指针.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/10.智能指针.md -------------------------------------------------------------------------------- /src/11.类型转换.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/11.类型转换.md -------------------------------------------------------------------------------- /src/12.Python的C++接口.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/12.Python的C++接口.md -------------------------------------------------------------------------------- /src/13.内嵌解释器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/13.内嵌解释器.md -------------------------------------------------------------------------------- /src/14.杂项.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/14.杂项.md -------------------------------------------------------------------------------- /src/15.FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/15.FAQ.md -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/my_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlotteLive/pybind11-Chinese-docs/HEAD/src/my_summary.md --------------------------------------------------------------------------------