├── .gitignore ├── .travis.yml ├── AUTHORS ├── CREDITS ├── Doxyfile ├── FUNCTIONS.rst ├── INSTALL ├── Makefile ├── README.md ├── TODO ├── UNLICENSE ├── VERSION ├── check.cc ├── etc ├── archlinux │ └── liblmdb++ │ │ └── PKGBUILD ├── fink │ ├── lmdb++.info │ ├── lmdb.info │ └── lmdb.patch └── portage │ ├── dev-db │ └── lmdb++ │ │ ├── Manifest │ │ └── lmdb++-0.9.14.0.ebuild │ ├── metadata │ └── layout.conf │ ├── overlay.xml │ └── profiles │ └── repo_name ├── example.cc ├── include └── lmdbxx │ └── lmdb++.h ├── lmdb++.h ├── meson.build └── meson_options.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/AUTHORS -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/CREDITS -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/Doxyfile -------------------------------------------------------------------------------- /FUNCTIONS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/FUNCTIONS.rst -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | * Test cases for cursor put/del 2 | -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/UNLICENSE -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /check.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/check.cc -------------------------------------------------------------------------------- /etc/archlinux/liblmdb++/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/etc/archlinux/liblmdb++/PKGBUILD -------------------------------------------------------------------------------- /etc/fink/lmdb++.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/etc/fink/lmdb++.info -------------------------------------------------------------------------------- /etc/fink/lmdb.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/etc/fink/lmdb.info -------------------------------------------------------------------------------- /etc/fink/lmdb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/etc/fink/lmdb.patch -------------------------------------------------------------------------------- /etc/portage/dev-db/lmdb++/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/etc/portage/dev-db/lmdb++/Manifest -------------------------------------------------------------------------------- /etc/portage/dev-db/lmdb++/lmdb++-0.9.14.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/etc/portage/dev-db/lmdb++/lmdb++-0.9.14.0.ebuild -------------------------------------------------------------------------------- /etc/portage/metadata/layout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/etc/portage/metadata/layout.conf -------------------------------------------------------------------------------- /etc/portage/overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/etc/portage/overlay.xml -------------------------------------------------------------------------------- /etc/portage/profiles/repo_name: -------------------------------------------------------------------------------- 1 | lmdbxx 2 | -------------------------------------------------------------------------------- /example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/example.cc -------------------------------------------------------------------------------- /include/lmdbxx/lmdb++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/include/lmdbxx/lmdb++.h -------------------------------------------------------------------------------- /lmdb++.h: -------------------------------------------------------------------------------- 1 | include/lmdbxx/lmdb++.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoytech/lmdbxx/HEAD/meson_options.txt --------------------------------------------------------------------------------